2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
package com.landtool.lanbase.modules.org.entity;
 
import java.util.Date;
import java.util.List;
 
/**
 * @Description: 单位关联行政的POJO{@link OrgUnit}{@link OrgRegion}
 * @Author: bing.guo
 * @Date: 15:46 2018/1/31
 *
 */
public class OrgUnitJoinRegion {
    
    //单位或部门ID
    private Long unitid;
    //单位父ID(顶级为0)
    private Long parentid;
    //单位名称
    private String unitname;
    //单位编码
    private String unidcode;
    //单位组织机构代码
    private String unidorgcode;
    //单位名称拼音首字母
    private String spellfirst;
    //单位简称
    private String unitshort;
    //单位类型(A:行政单位、B:监测单位、C信息中心)字典
    private String unittype;
    //记录排序
    private String rorder;
    //联系电话
    private String contactnumber;
    //传真
    private String faxnumber;
    //E-Mail地址
    private String email;
    //单位地址
    private String address;
    //邮政编码
    private String postalcode;
    //图片路径
    private String photourl;
    //网站地址
    private String websiteurl;
    //机构状态1 表示正常、2 删除、9 表示注销
    private Long status;
    //地图比例尺
    private String mapscales;
    //X坐标
    private String mapcenterpointx;
    //Y坐标
    private String mapcenterpointy;
    //记录添加时间
    private Date rcreatedate;
    //记录添加人中文名
    private Long rcreateuser;
    //记录修改时间戳
    private Date rlasteditdate;
    //备注
    private String remark;
    //是否为部门 0单位 1部门
    private Long isdept;
     //所属行政对象
    private List<OrgUnitRegion> orgunitregion;
 
    /**
     * 设置:单位或部门ID
     */
    public void setUnitid(Long unitid) {
        this.unitid = unitid;
    }
    /**
     * 获取:单位或部门ID
     */
    public Long getUnitid() {
        return unitid;
    }
    /**
     * 设置:单位父ID(顶级为0)
     */
    public void setParentid(Long parentid) {
        this.parentid = parentid;
    }
    /**
     * 获取:单位父ID(顶级为0)
     */
    public Long getParentid() {
        return parentid;
    }
    /**
     * 设置:单位名称
     */
    public void setUnitname(String unitname) {
        this.unitname = unitname;
    }
    /**
     * 获取:单位名称
     */
    public String getUnitname() {
        return unitname;
    }
    /**
     * 设置:单位编码
     */
    public void setUnidcode(String unidcode) {
        this.unidcode = unidcode;
    }
    /**
     * 获取:单位编码
     */
    public String getUnidcode() {
        return unidcode;
    }
    /**
     * 设置:单位组织机构代码
     */
    public void setUnidorgcode(String unidorgcode) {
        this.unidorgcode = unidorgcode;
    }
    /**
     * 获取:单位组织机构代码
     */
    public String getUnidorgcode() {
        return unidorgcode;
    }
    /**
     * 设置:单位名称拼音首字母
     */
    public void setSpellfirst(String spellfirst) {
        this.spellfirst = spellfirst;
    }
    /**
     * 获取:单位名称拼音首字母
     */
    public String getSpellfirst() {
        return spellfirst;
    }
    /**
     * 设置:单位简称
     */
    public void setUnitshort(String unitshort) {
        this.unitshort = unitshort;
    }
    /**
     * 获取:单位简称
     */
    public String getUnitshort() {
        return unitshort;
    }
    /**
     * 设置:单位类型(A:行政单位、B:监测单位、C信息中心)字典
     */
    public void setUnittype(String unittype) {
        this.unittype = unittype;
    }
    /**
     * 获取:单位类型(A:行政单位、B:监测单位、C信息中心)字典
     */
    public String getUnittype() {
        return unittype;
    }
    /**
     * 设置:记录排序
     */
    public void setRorder(String rorder) {
        this.rorder = rorder;
    }
    /**
     * 获取:记录排序
     */
    public String getRorder() {
        return rorder;
    }
    /**
     * 设置:联系电话
     */
    public void setContactnumber(String contactnumber) {
        this.contactnumber = contactnumber;
    }
    /**
     * 获取:联系电话
     */
    public String getContactnumber() {
        return contactnumber;
    }
    /**
     * 设置:传真
     */
    public void setFaxnumber(String faxnumber) {
        this.faxnumber = faxnumber;
    }
    /**
     * 获取:传真
     */
    public String getFaxnumber() {
        return faxnumber;
    }
    /**
     * 设置:E-Mail地址
     */
    public void setEmail(String email) {
        this.email = email;
    }
    /**
     * 获取:E-Mail地址
     */
    public String getEmail() {
        return email;
    }
    /**
     * 设置:单位地址
     */
    public void setAddress(String address) {
        this.address = address;
    }
    /**
     * 获取:单位地址
     */
    public String getAddress() {
        return address;
    }
    /**
     * 设置:邮政编码
     */
    public void setPostalcode(String postalcode) {
        this.postalcode = postalcode;
    }
    /**
     * 获取:邮政编码
     */
    public String getPostalcode() {
        return postalcode;
    }
    /**
     * 设置:图片路径
     */
    public void setPhotourl(String photourl) {
        this.photourl = photourl;
    }
    /**
     * 获取:图片路径
     */
    public String getPhotourl() {
        return photourl;
    }
    /**
     * 设置:网站地址
     */
    public void setWebsiteurl(String websiteurl) {
        this.websiteurl = websiteurl;
    }
    /**
     * 获取:网站地址
     */
    public String getWebsiteurl() {
        return websiteurl;
    }
    /**
     * 设置:机构状态1 表示正常、2 删除、9 表示注销
     */
    public void setStatus(Long status) {
        this.status = status;
    }
    /**
     * 获取:机构状态1 表示正常、2 删除、9 表示注销
     */
    public Long getStatus() {
        return status;
    }
    /**
     * 设置:地图比例尺
     */
    public void setMapscales(String mapscales) {
        this.mapscales = mapscales;
    }
    /**
     * 获取:地图比例尺
     */
    public String getMapscales() {
        return mapscales;
    }
    /**
     * 设置:X坐标
     */
    public void setMapcenterpointx(String mapcenterpointx) {
        this.mapcenterpointx = mapcenterpointx;
    }
    /**
     * 获取:X坐标
     */
    public String getMapcenterpointx() {
        return mapcenterpointx;
    }
    /**
     * 设置:Y坐标
     */
    public void setMapcenterpointy(String mapcenterpointy) {
        this.mapcenterpointy = mapcenterpointy;
    }
    /**
     * 获取:Y坐标
     */
    public String getMapcenterpointy() {
        return mapcenterpointy;
    }
    /**
     * 设置:记录添加时间
     */
    public void setRcreatedate(Date rcreatedate) {
        this.rcreatedate = rcreatedate;
    }
    /**
     * 获取:记录添加时间
     */
    public Date getRcreatedate() {
        return rcreatedate;
    }
    /**
     * 设置:记录添加人中文名
     */
    public void setRcreateuser(Long rcreateuser) {
        this.rcreateuser = rcreateuser;
    }
    /**
     * 获取:记录添加人中文名
     */
    public Long getRcreateuser() {
        return rcreateuser;
    }
    /**
     * 设置:记录修改时间戳
     */
    public void setRlasteditdate(Date rlasteditdate) {
        this.rlasteditdate = rlasteditdate;
    }
    /**
     * 获取:记录修改时间戳
     */
    public Date getRlasteditdate() {
        return rlasteditdate;
    }
    /**
     * 设置:备注
     */
    public void setRemark(String remark) {
        this.remark = remark;
    }
    /**
     * 获取:备注
     */
    public String getRemark() {
        return remark;
    }
    /**
     * 设置:是否为部门 0单位 1部门
     */
    public void setIsdept(Long isdept) {
        this.isdept = isdept;
    }
    /**
     * 获取:是否为部门 0单位 1部门
     */
    public Long getIsdept() {
        return isdept;
    }
    public List<OrgUnitRegion> getOrgunitregion() {
        return orgunitregion;
    }
    public void setOrgunitregion(List<OrgUnitRegion> orgunitregion) {
        this.orgunitregion = orgunitregion;
    }
 
}