package cn.huge.module.casebook.domain.dto;
|
|
import cn.huge.module.cases.domain.po.CaseInfo;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @title: 受理任务传输对象
|
* @description: 受理任务传输对象
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2022-03-11 11:43:25
|
* @version: 1.0.0
|
* @see CaseInfo
|
*/
|
@Data
|
public class CaseBookPageDTO {
|
|
/**
|
* 案件编号
|
*/
|
private String id;
|
|
/**
|
* 纠纷发生时间
|
*/
|
private Date occurTime;
|
|
/**
|
* 纠纷发生地
|
*/
|
private String addr;
|
|
/**
|
* 申请方
|
*/
|
private String plaintiffs;
|
|
/**
|
* 被申请方
|
*/
|
private String defendants;
|
|
/**
|
* 纠纷类型
|
*/
|
private String caseType;
|
|
/**
|
* 调解员
|
*/
|
private String mediator;
|
|
/**
|
* 调解组织
|
*/
|
private String mediateUnitName;
|
|
/**
|
* 协助调解员
|
*/
|
private String assistMediator;
|
|
/**
|
* 化解结果编码
|
*/
|
private String mediResult;
|
|
/**
|
* 化解结果名称
|
*/
|
private String mediResultName;
|
|
/**
|
* 转入时间
|
*/
|
private Date createTime;
|
|
|
}
|