linwei
2024-01-03 c9520071522dbd2929f4f8e28ce8b70712a2e5e8
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.doorplateAddress.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 门牌地址表(总台账数据) 实体类
 *
 * @author BladeX
 * @since 2023-10-28
 */
@Data
@TableName("jczz_doorplate_address")
@ApiModel(value = "DoorplateAddress对象", description = "门牌地址表(总台账数据)")
public class DoorplateAddressEntity implements Serializable {
    private static final long serialVersionUID = 1L;
    /**
     * 主键
     */
    @JsonSerialize(using = ToStringSerializer.class)
    @ApiModelProperty("主键id")
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private Long id;
 
 
    /**
     * 地址名称
     */
    @ApiModelProperty(value = "地址名称")
    private String addressName;
 
    /**
     * 门牌地址编码
     */
    @ApiModelProperty(value = "门牌地址编码")
    private String addressCode;
 
    /**
     * 经度
     */
    @ApiModelProperty(value = "经度")
    private String X;
    /**
     * 纬度
     */
    @ApiModelProperty(value = "纬度")
    private String Y;
 
    /**
     * x84经度
     */
    @ApiModelProperty(value = "x84经度")
    @TableField("x_84")
    private String x84;
    /**
     * y84纬度
     */
    @ApiModelProperty(value = "y84纬度")
    @TableField("y_84")
    private String y84;
    /**
     * 行政区编码
     */
    @ApiModelProperty(value = "行政区编码")
    private String regionCode;
    /**
     * 行政区名称
     */
    @ApiModelProperty(value = "行政区名称")
    private String regionName;
    /**
     * 乡镇街道编号
     */
    @ApiModelProperty(value = "乡镇街道编号")
    @TableField("town_street_code")
    private String townStreetCode;
    /**
     * 乡镇街道名称
     */
    @ApiModelProperty(value = "乡镇街道名称")
    private String townStreetName;
    /**
     * 居委会(社区)编号
     */
    @ApiModelProperty(value = "居委会(社区)编号")
    private String neiCode;
    /**
     * 居委会(社区)名称
     */
    @ApiModelProperty(value = "居委会(社区)名称")
    private String neiName;
    /**
     * 街路巷编码
     */
    @ApiModelProperty(value = "街路巷编码")
    private String streetRuCode;
    /**
     * 街路巷名称
     */
    @ApiModelProperty(value = "街路巷名称")
    private String streetRuName;
    /**
     * 分局代码
     */
    @ApiModelProperty(value = "分局代码")
    private String branchCode;
    /**
     * 分局名称
     */
    @ApiModelProperty(value = "分局名称")
    private String branchName;
    /**
     * 派出所代码
     */
    @ApiModelProperty(value = "派出所代码")
    private String localPoliceStationCode;
    /**
     * 派出所名称
     */
    @ApiModelProperty(value = "派出所名称")
    private String localPoliceStationName;
    /**
     * 警务室代码
     */
    @ApiModelProperty(value = "警务室代码")
    private String policeAffairsCode;
    /**
     * 警务室名称
     */
    @ApiModelProperty(value = "警务室名称")
    private String policeAffairsName;
    /**
     * 单元编码
     */
    @ApiModelProperty(value = "单元编码")
    private String unitCode;
    /**
     * 单元号(名称)
     */
    @ApiModelProperty(value = "单元号(名称)")
    private String unitName;
    /**
     * 楼栋编码
     */
    @ApiModelProperty(value = "楼栋编码")
    private String buildingCode;
    /**
     * 楼栋号(名称)
     */
    @ApiModelProperty(value = "楼栋号(名称)")
    private String buildingName;
    /**
     * 户室号(名称)
     */
    @ApiModelProperty(value = "户室号(名称)")
    private String houseName;
    /**
     * 楼层
     */
    @ApiModelProperty(value = "楼层")
    private String floor;
    /**
     * 小区编码
     */
    @ApiModelProperty(value = "小区编码")
    private String aoiCode;
    /**
     * 小区名称
     */
    @ApiModelProperty(value = "小区名称")
    private String aoiName;
    /**
     * 兴趣点code
     */
    @ApiModelProperty(value = "兴趣点code")
    private String poiCode;
    /**
     * 兴趣点名称
     */
    @ApiModelProperty(value = "兴趣点名称")
    private String poi;
    /**
     * 地址级别
     */
    @ApiModelProperty(value = "地址级别")
    private Integer addressLevel;
    /**
     * 父节点地址编码
     */
    @ApiModelProperty(value = "父节点地址编码")
    private String parentAddressCode;
    /**
     * 采集照片url
     */
    @ApiModelProperty(value = "采集照片url")
    private String gatPicUrl;
    /**
     * 门牌状态
     */
    @ApiModelProperty(value = "门牌状态")
    private String doorplateStatus;
    /**
     * 门牌类型
     */
    @ApiModelProperty(value = "门牌类型")
    private String doorplateType;
    /**
     * 门牌类型编号
     */
    @ApiModelProperty(value = "门牌类型编号")
    private String doorplateTypeCode;
    /**
     * 门牌号
     */
    @ApiModelProperty(value = "门牌号")
    private String doorplateNum;
    /**
     * 门牌名称
     */
    @ApiModelProperty(value = "门牌名称")
    private String doorplateName;
    /**
     * 二维码路径
     */
    @ApiModelProperty(value = "二维码路径")
    private String qrCodePath;
 
    /**
     * 子门牌号
     */
    @ApiModelProperty(value = "子门牌号")
    private String subDoorPlateNo;
 
    /**
     * 大门名称
     */
    @ApiModelProperty(value = "大门名称")
    private String gateName;
    /**
     * 操作类型
     */
    @ApiModelProperty(value = "操作类型")
    private Integer operationType;
    /**
     * 地址类型
     */
    @ApiModelProperty(value = "地址类型")
    private Integer addressType;
    /**
     * 子小区名称
     */
    @ApiModelProperty(value = "子小区名称")
    private String subAoi;
    /**
     * 民警姓名
     */
    @ApiModelProperty(value = "民警姓名")
    private String policeman;
    /**
     * 民警电话
     */
    @ApiModelProperty(value = "民警电话")
    private String policemanPhone;
    /**
     * 警务网格编码
     */
    @ApiModelProperty(value = "警务网格编码")
    private String jwwgCode;
 
}