package cn.huge.module.draft.domain.dto;
|
|
import cn.huge.module.cases.domain.po.CaseAgent;
|
import cn.huge.module.cases.domain.po.CaseInfo;
|
import cn.huge.module.cases.domain.po.CasePerson;
|
import cn.huge.module.draft.domain.po.CasedraftAgent;
|
import cn.huge.module.draft.domain.po.CasedraftInfo;
|
import cn.huge.module.draft.domain.po.CasedraftPerson;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @title: 纠纷信息数据传输对象
|
* @description: 纠纷信息数据传输对象
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2022-03-11 11:43:25
|
* @version: 1.0.0
|
* @see CaseInfo
|
*/
|
@Data
|
public class DraftRegisterSaveDTO extends CasedraftInfo {
|
|
/**
|
* 申请人列表
|
*/
|
private List<CasedraftPerson> plaintiffList;
|
|
/**
|
* 申请人代理人列表
|
*/
|
private List<CasedraftAgent> pagentList;
|
|
/**
|
* 被申请人列表
|
*/
|
private List<CasedraftPerson> defendantList;
|
|
/**
|
* 被申请人代理人列表
|
*/
|
private List<CasedraftAgent> dagentList;
|
|
/**
|
* 调解组织类型,1:本单位调解,2:本单位人调解,3:其他单位调解
|
*/
|
private String mediateUnitType;
|
|
/**
|
* 自行受理标识,0:不是,1:是
|
*/
|
private Integer isSelfAccept;
|
|
/**
|
* 是否是草稿提交,0:不是,1:是
|
*/
|
private Integer isDraft;
|
}
|