wl
2022-09-28 4ade291ebd74dd4cd42556f07bd4f205f73c3313
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
121
122
123
124
125
126
127
128
129
130
package com.ycl.entity.caseHandler;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.Version;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 文书种类 只针对违建
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_writ")
public class Writ implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 案件id(同ums_base_case表id)
     */
    @TableId("base_case_id")
    private Integer baseCaseId;
 
    /**
     * 违建id
     */
    @TableField("illegal_building_id")
    private Integer illegalBuildingId;
 
    /**
     * 文书种类
     */
    @TableField("writ_type")
    private Integer writType;
 
    /**
     * 文书编号
     */
    @TableField("writ_code")
    private String writCode;
 
    /**
     * 违法类型
     */
    @TableField("illegal_type")
    private Integer illegalType;
 
    /**
     * 文书发放时间
     */
    @TableField("send_time")
    private LocalDateTime sendTime;
 
    /**
     * 文书限定时间
     */
    @TableField("limit_time")
    private LocalDateTime limitTime;
 
    /**
     * 文书发放内容
     */
    @TableField("send_content")
    private String sendContent;
 
    /**
     * 实际整改时间
     */
    @TableField("rectify_time")
    private LocalDateTime rectifyTime;
 
    /**
     * 整改情况
     */
    @TableField("rectify_situation")
    private String rectifySituation;
 
    /**
     * 备注
     */
    @TableField("remark")
    private String remark;
 
    /**
     * 文书照片上传
     */
    @TableField("writ_pic")
    private String writPic;
 
    /**
     * 整改前照片
     */
    @TableField("original_pic")
    private String originalPic;
 
    /**
     * 整改后照片
     */
    @TableField("rectified_pic")
    private String rectifiedPic;
 
    /**
     * 其他照片
     */
    @TableField("other_pic")
    private String otherPic;
 
    /**
     * 创建人
     */
    @TableField("create_user")
    private Integer createUser;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
 
 
}