郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.Domain;
 
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 java.io.Serializable;
import java.util.Date;
 
@TableName("company")
public class CompanyInfo implements Serializable {
    @TableField(exist = false)
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 单位代码  code **/
    private String code;
 
    /** 单位名称  company **/
    private String company;
 
    /** 是否为主体单位  ismain **/
    private Byte ismain;
 
    /** 联系人  contactname **/
    private String contactname;
 
    /** 联系电话  contactphone **/
    private String contactphone;
 
    /** 省份  province **/
    private String province;
 
    /** 城市  city **/
    private String city;
 
    /** 区县  area **/
    private String area;
 
    /** 乡镇  town **/
    private String town;
 
    /** 社区  community **/
    private String community;
 
    /** 是否删除  isdel **/
    private Byte isdel;
 
    /** 创建人  createdby **/
    private String createdby;
 
    /** 创建时间  createddate **/
    private Date createddate;
 
    /** 更新人  lastmodifiedby **/
    private String lastmodifiedby;
 
    /** 更新时间  lastmodifieddate **/
    private Date lastmodifieddate;
 
    private String longitude;
 
    private String latitude;
 
    private Byte isbanned;
 
    /**   id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   名称  company   **/
    public String getCompany() {
        return company;
    }
 
    /**   名称  company   **/
    public void setCompany(String company) {
        this.company = company == null ? null : company.trim();
    }
 
    /**   联系人  contactname   **/
    public String getContactname() {
        return contactname;
    }
 
    /**   联系人  contactname   **/
    public void setContactname(String contactname) {
        this.contactname = contactname == null ? null : contactname.trim();
    }
 
    /**   联系电话  contactphone   **/
    public String getContactphone() {
        return contactphone;
    }
 
    /**   联系电话  contactphone   **/
    public void setContactphone(String contactphone) {
        this.contactphone = contactphone == null ? null : contactphone.trim();
    }
 
    /**   省份  province   **/
    public String getProvince() {
        return province;
    }
 
    /**   省份  province   **/
    public void setProvince(String province) {
        this.province = province == null ? null : province.trim();
    }
 
    /**   城市  city   **/
    public String getCity() {
        return city;
    }
 
    /**   城市  city   **/
    public void setCity(String city) {
        this.city = city == null ? null : city.trim();
    }
 
    /**   区县  area   **/
    public String getArea() {
        return area;
    }
 
    /**   区县  area   **/
    public void setArea(String area) {
        this.area = area == null ? null : area.trim();
    }
 
    /**   乡镇  town   **/
    public String getTown() {
        return town;
    }
 
    /**   乡镇  town   **/
    public void setTown(String town) {
        this.town = town == null ? null : town.trim();
    }
 
    /**   社区  community   **/
    public String getCommunity() {
        return community;
    }
 
    /**   社区  community   **/
    public void setCommunity(String community) {
        this.community = community == null ? null : community.trim();
    }
 
    /**   是否删除  isdel   **/
    public Byte getIsdel() {
        return isdel;
    }
 
    /**   是否删除  isdel   **/
    public void setIsdel(Byte isdel) {
        this.isdel = isdel;
    }
 
    public String getCreatedby() {
        return createdby;
    }
 
    public void setCreatedby(String createdby) {
        this.createdby = createdby;
    }
 
    public Date getCreateddate() {
        return createddate;
    }
 
    public void setCreateddate(Date createddate) {
        this.createddate = createddate;
    }
 
    public String getLastmodifiedby() {
        return lastmodifiedby;
    }
 
    public void setLastmodifiedby(String lastmodifiedby) {
        this.lastmodifiedby = lastmodifiedby;
    }
 
    public Date getLastmodifieddate() {
        return lastmodifieddate;
    }
 
    public void setLastmodifieddate(Date lastmodifieddate) {
        this.lastmodifieddate = lastmodifieddate;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Byte getIsmain() {
        return ismain;
    }
 
    public void setIsmain(Byte ismain) {
        this.ismain = ismain;
    }
 
    public String getLongitude() {
        return longitude;
    }
 
    public void setLongitude(String longitude) {
        this.longitude = longitude;
    }
 
    public String getLatitude() {
        return latitude;
    }
 
    public void setLatitude(String latitude) {
        this.latitude = latitude;
    }
 
    public Byte getIsbanned() {
        return isbanned;
    }
 
    public void setIsbanned(Byte isbanned) {
        this.isbanned = isbanned;
    }
}