| | |
| | | public class DraftRegisterSaveDTO extends CasedraftInfo { |
| | | |
| | | /** |
| | | * 申请人列表 |
| | | * 当事人列表 |
| | | */ |
| | | private List<CasedraftPerson> plaintiffList; |
| | | private List<CasedraftPerson> personList; |
| | | |
| | | /** |
| | | * 申请人代理人列表 |
| | | * 当事人代理人列表 |
| | | */ |
| | | 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; |
| | | private List<CasedraftAgent> agentList; |
| | | } |