zhanghua
2022-09-27 6aae0fb74bb0414cf158bac825858006c92733ea
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
131
132
133
134
package com.ycl.entity.caseHandler;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
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.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 案件基本信息
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_base_case")
@Builder
public class BaseCase implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 事件编号
     */
    @TableField("code")
    private String code;
 
    /**
     * 事件来源(1-视频 2-手动登记)
     */
    @TableField("event_source")
    private Integer eventSource;
 
    /**
     * 问题类别(1-违规 2-违建)
     */
    @TableField("category")
    private Integer category;
 
    /**
     * 所属街道
     */
    @TableField("street_id")
    private Integer streetId;
 
    /**
     * 所属社区
     */
    @TableField("community_id")
    private Integer communityId;
 
    /**
     * 报警点位 事发地点
     */
    @TableField("site")
    private String site;
 
    /**
     * 定位信息
     */
    @TableField("longitude")
    private Double longitude;
 
    /**
     * 定位-纬度
     */
    @TableField("latitude")
    private Double latitude;
 
    /**
     * 报警时间
     */
    @TableField("alarm_time")
    private LocalDateTime alarmTime;
 
    /**
     * 登记人
     */
    @TableField("create_user")
    private Integer createUser;
 
    /**
     * 处理状态(0误报 1上报 2立案 3派遣 4处置 5核查 6结案)
     */
    @TableField("state")
    private Integer state;
 
    /**
     * 处理意见
     */
    @TableField("handling_opinion")
    private String handlingOpinion;
 
    /**
     * 备注
     */
    @TableField("remark")
    private String remark;
 
    /**
     * 审核意见
     */
    @TableField("audit_opinion")
    private String auditOpinion;
 
    /**
     * 结案意见
     */
    @TableField("final_opinion")
    private String finalOpinion;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
 
 
}