zhanghua
2024-12-20 1f45c25ea725445d7e78e8d5da6e72150f35f2eb
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
package com.ycl.entity.caseHandler;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
 
/**
 * <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")
    @ApiModelProperty(value = "案件id(同ums_base_case表id)")
    private Long baseCaseId;
 
    /**
     * 违建类别
     */
    @TableField("category_id")
    @ApiModelProperty(value = "违建类别")
    private Integer categoryId;
 
    /**
     * 当事人姓名
     */
    @TableField("party_name")
    @ApiModelProperty(value = "当事人姓名")
    private String partyName;
 
    /**
     * 当事人身份证号码
     */
    @TableField("party_id_card")
    @ApiModelProperty(value = "当事人身份证号码")
    private String partyIdCard;
 
    /**
     * 当事人联系电话
     */
    @TableField("party_phone")
    @ApiModelProperty(value = "当事人联系电话")
    private String partyPhone;
 
    /**
     * 身份证正面
     */
    @TableField("positive")
    @ApiModelProperty(value = "身份证正面")
    private String positive;
 
    /**
     * 身份证反面
     */
    @TableField("negative")
    @ApiModelProperty(value = "身份证反面")
    private String negative;
 
    /**
     * 违建具体位置
     */
    @TableField("position")
    @ApiModelProperty(value = "违建具体位置")
    private String position;
 
    /**
     * 违建长
     */
    @TableField("building_length")
    @ApiModelProperty(value = "违建长")
    private Float buildingLength;
 
    /**
     * 违建宽
     */
    @TableField("building_width")
    @ApiModelProperty(value = "违建宽")
    private Float buildingWidth;
 
    /**
     * 违建高
     */
    @TableField("building_high")
    @ApiModelProperty(value = "违建高")
    private Float buildingHigh;
 
    /**
     * 违建面积
     */
    @TableField("building_area")
    @ApiModelProperty(value = "违建面积")
    private Float buildingArea;
 
    /**
     * 违建材料
     */
    @TableField("materials")
    @ApiModelProperty(value = "违建材料")
    private String materials;
 
    /**
     * 违建类别文本
     */
    @TableField(value = "category_text",exist = false)
    @ApiModelProperty(value = "违建类别文本")
    private String categoryText;
 
 
}