package cn.huge.module.cases.domain.dto;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class FrontPageCountDTO {
|
/**
|
* 待分派
|
*/
|
private Long waitDisp;
|
|
/**
|
* 待签收
|
*/
|
private Long waitSign;
|
|
/**
|
* 待受理
|
*/
|
private Long waitAccept;
|
|
/**
|
* 办理中
|
*/
|
private Long Processing;
|
|
/**
|
* 待审核
|
*/
|
private Long waitReview;
|
|
/**
|
* 待审核(回退审核)
|
*/
|
private Long returnReview;
|
|
/**
|
* 待审核(上报审核)
|
*/
|
private Long appearReview;
|
|
/**
|
* 待审核(结案申请审核)
|
*/
|
private Long windupReview;
|
|
/**
|
* 待审核(联合处置审核)
|
*/
|
private Long assistReview;
|
|
/**
|
* 督办
|
*/
|
private Long supervise;
|
|
/**
|
* 已办
|
*/
|
private Long alreadyDone;
|
|
/**
|
* 草稿
|
*/
|
private Long caseDraft;
|
|
/**
|
* 风险
|
*/
|
private Long isRisk;
|
|
/**
|
* 超时任务
|
*/
|
private Long timeOut;
|
/**
|
* 办理我承办的
|
* */
|
private Long myProcessing;
|
/**
|
* 办理我配合的
|
* */
|
private Long myAssist;
|
/**
|
* 结案申请我承办的
|
* */
|
private Long myWindupApply;
|
/**
|
* 结案申请我配合的
|
* */
|
private Long myWindupAssist;
|
/**
|
* 办理中
|
* */
|
private Long myProcessingCount;
|
/**
|
* 结案申请
|
* */
|
private Long myWindupApplyCount;
|
}
|