zhanghua
2023-12-15 1eb1ae6b785210727812ed5f6ce9ccaaf09cc458
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
package com.ycl.vo.casePool;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("案件池违建立案件")
public class CasePoolIllegalBuildingVO {
 
    @ApiModelProperty(value = "id")
    private Integer id;
 
    /**
     * 事件编号
     */
    @ApiModelProperty(value = "事件编号", dataType = "String")
    private String code;
 
    /**
     * 事件来源(1-视频 2-手动登记)
     */
    @ApiModelProperty(value = "事件来源(1-视频 2-手动登记)", dataType = "Integer")
    private Integer eventSource;
 
    /**
     * 违建类别
     */
    @ApiModelProperty(value = "违建类别", dataType = "String")
    private String category;
 
    /**
     * 所属社区
     */
    @ApiModelProperty(value = "所属社区", dataType = "Integer")
    private String community;
 
    /**
     * 违建地点
     */
    @ApiModelProperty(value = "违建地点", dataType = "String")
    private String site;
 
    /**
     * 违建长
     */
    @ApiModelProperty(value = "违建长", dataType = "Integer")
    private Float buildingLength;
 
    /**
     * 违建宽
     */
    @ApiModelProperty(value = "违建宽", dataType = "Integer")
    private Float buildingWidth;
 
    /**
     * 违建高
     */
    @ApiModelProperty(value = "违建高", dataType = "Float")
    private Float buildingHigh;
 
    /**
     * 违建面积
     */
    @ApiModelProperty(value = "违建面积", dataType = "Float")
    private Float buildingArea;
 
    /**
     * 违建材料
     */
    @ApiModelProperty(value = "违建材料", dataType = "String")
    private String materials;
    /**
     * 状态
     */
    @ApiModelProperty(value = "状态")
    private Integer state;
}