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
package com.ycl.entity.caseHandler;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.Version;
import com.baomidou.mybatisplus.annotation.TableId;
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_illegal_building")
public class IllegalBuilding implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 案件id(同ums_base_case表id)
     */
    @TableId("base_case_id")
    private Integer baseCaseId;
 
    /**
     * 违建类别
     */
    @TableField("category_id")
    private Integer categoryId;
 
    /**
     * 当事人姓名
     */
    @TableField("party_name")
    private String partyName;
 
    /**
     * 当事人身份证号码
     */
    @TableField("party_id_card")
    private String partyIdCard;
 
    /**
     * 当事人联系电话
     */
    @TableField("party_phone")
    private String partyPhone;
 
    /**
     * 身份证正面
     */
    @TableField("positive")
    private String positive;
 
    /**
     * 身份证反面
     */
    @TableField("negative")
    private String negative;
 
    /**
     * 违建具体位置
     */
    @TableField("position")
    private String position;
 
    /**
     * 违建长
     */
    @TableField("building_length")
    private Float buildingLength;
 
    /**
     * 违建宽
     */
    @TableField("building_width")
    private Float buildingWidth;
 
    /**
     * 违建高
     */
    @TableField("building_high")
    private Float buildingHigh;
 
    /**
     * 违建面积
     */
    @TableField("building_area")
    private Float buildingArea;
 
    /**
     * 违建材料
     */
    @TableField("materials")
    private String materials;
 
 
}