forked from gzzfw/backEnd/gz-dyh

liyj
2024-09-12 069d1a95b682c3db281e4eae394594123526bb97
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package cn.huge.module.cases.domain.po;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @title: 纠纷催办信息表数据库对应关系类
 * @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
 * @company:hugeinfo
 * @author: zhouxt
 * @time: 2024-09-08 10:39:38
 * @version 1.0.0
 */
@TableName(value = "dyh_case_urging")
@Data
public class CaseUrging {
 
    /**
    * 主键编号
    */
    @TableId(value = "id")
    private String id;
 
    /**
    * 纠纷编号
    */
    @TableField(value = "case_id")
    private String caseId;
 
    /**
    * 催办意见
    */
    @TableField(value = "urging_content")
    private String urgingContent;
 
    /**
    * 催办人编号
    */
    @TableField(value = "urging_user_id")
    private String urgingUserId;
 
    /**
    * 催办人名称
    */
    @TableField(value = "urging_user_name")
    private String urgingUserName;
 
    /**
    * 催办时间
    */
    @TableField(value = "urging_time")
    private Date urgingTime;
 
    /**
    * 催办状态
    */
    @TableField(value = "urging_status")
    private Integer urgingStatus;
 
    /**
    * 回复期限
    */
    @TableField(value = "reply_term")
    private Integer replyTerm;
 
    /**
    * 回复内容
    */
    @TableField(value = "reply_content")
    private String replyContent;
 
    /**
    * 回复人编号
    */
    @TableField(value = "reply_user_id")
    private String replyUserId;
 
    /**
    * 回复人名称
    */
    @TableField(value = "reply_user_name")
    private String replyUserName;
 
    /**
    * 回复时间
    */
    @TableField(value = "reply_time")
    private String replyTime;
 
    /**
    * 删除状态
    */
    @TableLogic
    @TableField(value = "delete_status")
    private Integer deleteStatus;
 
    /**
    * 客户编号
    */
    @TableField(value = "cust_id")
    private String custId;
 
    /**
    * 创建时间
    */
    @TableField(value = "create_time")
    private Date createTime;
 
    /**
    * 更新时间
    */
    @TableField(value = "update_time")
    private Date updateTime;
 
}