广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
60
61
62
63
64
65
package cn.huge.module.cases.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.CaseInfoUnfold;
import cn.huge.module.cases.domain.po.CasePerson;
import cn.huge.module.sys.dto.FileTypeInfoBaseDTO;
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 CaseInfoDTO extends CaseInfo {
 
    /**
     * 调解组织类型,1:本单位调解,2:本单位人调解,3:其他单位调解
     */
    private String mediateUnitType;
 
    /**
     * 申请人列表
     */
    private List<CasePerson> personList;
 
    /**
     * 申请人代理人列表
     */
    private List<CaseAgent> agentList;
 
    /**
     * 附件列表
     */
    private List<FileTypeInfoBaseDTO> fileInfoList;
 
    /**
     * 是否是登记人 1:是 2:否
     */
    private String whetherInput;
 
    /**
     * 相关附件数量
     */
    private Integer fileSize;
 
    /**
     * 是否扬言风险
     */
    private String isRisk;
 
    /**
     * 非警务调处情况
     */
    private String tcqk;
 
 
}