forked from gzzfw/backEnd/gz-dyh

wangwh
2024-08-28 b47d4a7accabce974e19d2a1ffb3c5c67507d74b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
}