广州市综治平台后端
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
package cn.huge.module.knowledge.domain.dto;
 
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
 
/**
 * 调解案件详情DTO
 */
@Data
public class DyhCaseDetailDTO {
    
    /**
     * 主键
     */
    private String id;
 
    /**
     * 案件标题
     */
    private String caseTitle;
 
    /**
     * 案件描述
     */
    private String caseDes;
 
    /**
     * 案件诉求
     */
    private String caseClaim;
 
    /**
     * 协议内容
     */
    private String agreeContent;
 
    /**
     * 申请人
     */
    private String plaintiffs;
 
    /**
     * 被申请人
     */
    private String defendants;