package cn.huge.module.cases.domain.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author zhouxiantao
|
* @create 2025-04-15 15:55
|
*/
|
@Data
|
public class FrontPageListAllDTO {
|
/**
|
* 所属业务表编号
|
*/
|
private String ownerId;
|
|
/**
|
* 纠纷信息ID
|
*/
|
private String caseId;
|
|
/**
|
* 风险案件标签,0:非风险案件,1:风险案件
|
*/
|
private String isRisk;
|
|
/**
|
* 流转时间
|
*/
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
|
private Date turnaroundTime;
|
|
/**
|
* 分派时限
|
*/
|
@JsonFormat(pattern="yyyy-MM-dd HH:mm", timezone="GMT+8")
|
private Date timeLimit;
|
|
/**
|
* 事项等级
|
*/
|
private Integer caseGrade;
|
|
/**
|
* 事项来源
|
*/
|
private String caseSource;
|
/**
|
* 纠纷类型
|
*/
|
private String caseType;
|
|
/**
|
* 申请方
|
*/
|
private String plaintiffs;
|
|
/**
|
* 被申请方
|
*/
|
private String defendants;
|
|
/**
|
* 督办次数
|
*/
|
private int superviseCount;
|
/**
|
* 类型编码
|
* */
|
private String taskType;
|
/**
|
* 类型名称
|
* */
|
private String taskTypeName;
|
|
}
|