Bladeren bron

修改entity

huwhois 5 jaren geleden
bovenliggende
commit
9bc4a3d404

+ 2 - 188
src/main/java/io/renren/modules/admin/entity/AttendersEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2

3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6

6 7
import java.io.Serializable;
@ -111,193 +112,6 @@ public class AttendersEntity implements Serializable {
111 112
	/**
112 113
	 * 是否被删除 状态  0:正常   1:删除
113 114
	 */
115
	@TableLogic
114 116
	private Integer isDel;
115

116
	public static long getSerialVersionUID() {
117
		return serialVersionUID;
118
	}
119

120
	public Long getId() {
121
		return id;
122
	}
123

124
	public void setId(Long id) {
125
		this.id = id;
126
	}
127

128
	public Long getMeetingId() {
129
		return meetingId;
130
	}
131

132
	public void setMeetingId(Long meetingId) {
133
		this.meetingId = meetingId;
134
	}
135

136
	public Long getMemberId() {
137
		return memberId;
138
	}
139

140
	public void setMemberId(Long memberId) {
141
		this.memberId = memberId;
142
	}
143

144
	public String getName() {
145
		return name;
146
	}
147

148
	public void setName(String name) {
149
		this.name = name;
150
	}
151

152
	public String getOrganization() {
153
		return organization;
154
	}
155

156
	public void setOrganization(String organization) {
157
		this.organization = organization;
158
	}
159

160
	public Long getPositionId() {
161
		return positionId;
162
	}
163

164
	public void setPositionId(Long positionId) {
165
		this.positionId = positionId;
166
	}
167

168
	public Long getJobTitle() {
169
		return jobTitle;
170
	}
171

172
	public void setJobTitle(Long jobTitle) {
173
		this.jobTitle = jobTitle;
174
	}
175

176
	public String getPhone() {
177
		return phone;
178
	}
179

180
	public void setPhone(String phone) {
181
		this.phone = phone;
182
	}
183

184
	public String getEmail() {
185
		return email;
186
	}
187

188
	public void setEmail(String email) {
189
		this.email = email;
190
	}
191

192
	public String getOfficephone() {
193
		return officephone;
194
	}
195

196
	public void setOfficephone(String officephone) {
197
		this.officephone = officephone;
198
	}
199

200
	public Long getTypeId() {
201
		return typeId;
202
	}
203

204
	public void setTypeId(Long typeId) {
205
		this.typeId = typeId;
206
	}
207

208
	public Integer getIntention() {
209
		return intention;
210
	}
211

212
	public void setIntention(Integer intention) {
213
		this.intention = intention;
214
	}
215

216
	public Integer getRoom() {
217
		return room;
218
	}
219

220
	public void setRoom(Integer room) {
221
		this.room = room;
222
	}
223

224
	public Integer getTransfer() {
225
		return transfer;
226
	}
227

228
	public void setTransfer(Integer transfer) {
229
		this.transfer = transfer;
230
	}
231

232
	public Long getServicer() {
233
		return servicer;
234
	}
235

236
	public void setServicer(Long servicer) {
237
		this.servicer = servicer;
238
	}
239

240
	public String getNote() {
241
		return note;
242
	}
243

244
	public void setNote(String note) {
245
		this.note = note;
246
	}
247

248
	public Integer getAccount() {
249
		return account;
250
	}
251

252
	public void setAccount(Integer account) {
253
		this.account = account;
254
	}
255

256
	public String getEmailLx() {
257
		return emailLx;
258
	}
259

260
	public void setEmailLx(String emailLx) {
261
		this.emailLx = emailLx;
262
	}
263

264
	public Date getCreateTime() {
265
		return createTime;
266
	}
267

268
	public void setCreateTime(Date createTime) {
269
		this.createTime = createTime;
270
	}
271

272
	public Date getModifyTime() {
273
		return modifyTime;
274
	}
275

276
	public void setModifyTime(Date modifyTime) {
277
		this.modifyTime = modifyTime;
278
	}
279

280
	public Long getCreater() {
281
		return creater;
282
	}
283

284
	public void setCreater(Long creater) {
285
		this.creater = creater;
286
	}
287

288
	public Long getModifier() {
289
		return modifier;
290
	}
291

292
	public void setModifier(Long modifier) {
293
		this.modifier = modifier;
294
	}
295

296
	public Integer getIsDel() {
297
		return isDel;
298
	}
299

300
	public void setIsDel(Integer isDel) {
301
		this.isDel = isDel;
302
	}
303 117
}

+ 0 - 120
src/main/java/io/renren/modules/admin/entity/CompanyEntity.java

@ -82,124 +82,4 @@ public class CompanyEntity implements Serializable {
82 82
	 */
83 83
	@TableLogic
84 84
	private Integer isDel;
85

86
	public Long getId() {
87
		return id;
88
	}
89

90
	public void setId(Long id) {
91
		this.id = id;
92
	}
93

94
	public String getUsername() {
95
		return username;
96
	}
97

98
	public void setUsername(String username) {
99
		this.username = username;
100
	}
101

102
	public String getPassword() {
103
		return password;
104
	}
105

106
	public void setPassword(String password) {
107
		this.password = password;
108
	}
109

110
	public String getCompanyname() {
111
		return companyname;
112
	}
113

114
	public void setCompanyname(String companyname) {
115
		this.companyname = companyname;
116
	}
117

118
	public String getAddress() {
119
		return address;
120
	}
121

122
	public void setAddress(String address) {
123
		this.address = address;
124
	}
125

126
	public String getTelephone() {
127
		return telephone;
128
	}
129

130
	public void setTelephone(String telephone) {
131
		this.telephone = telephone;
132
	}
133

134
	public String getContactname() {
135
		return contactname;
136
	}
137

138
	public void setContactname(String contactname) {
139
		this.contactname = contactname;
140
	}
141

142
	public String getCellphone() {
143
		return cellphone;
144
	}
145

146
	public void setCellphone(String cellphone) {
147
		this.cellphone = cellphone;
148
	}
149

150
	public String getUscCode() {
151
		return uscCode;
152
	}
153

154
	public void setUscCode(String uscCode) {
155
		this.uscCode = uscCode;
156
	}
157

158
	public String getUscPicture() {
159
		return uscPicture;
160
	}
161

162
	public void setUscPicture(String uscPicture) {
163
		this.uscPicture = uscPicture;
164
	}
165

166
	public Integer getLevel() {
167
		return level;
168
	}
169

170
	public void setLevel(Integer level) {
171
		this.level = level;
172
	}
173

174
	public Integer getIsCheck() {
175
		return isCheck;
176
	}
177

178
	public void setIsCheck(Integer isCheck) {
179
		this.isCheck = isCheck;
180
	}
181

182
	public Date getCreateTime() {
183
		return createTime;
184
	}
185

186
	public void setCreateTime(Date createTime) {
187
		this.createTime = createTime;
188
	}
189

190
	public Date getModifyTime() {
191
		return modifyTime;
192
	}
193

194
	public void setModifyTime(Date modifyTime) {
195
		this.modifyTime = modifyTime;
196
	}
197

198
	public Integer getIsDel() {
199
		return isDel;
200
	}
201

202
	public void setIsDel(Integer isDel) {
203
		this.isDel = isDel;
204
	}
205 85
}

+ 0 - 108
src/main/java/io/renren/modules/admin/entity/EmployeeEntity.java

@ -74,112 +74,4 @@ public class EmployeeEntity implements Serializable {
74 74
	 */
75 75
	@TableLogic
76 76
	private Integer isDel;
77

78
	public static long getSerialVersionUID() {
79
		return serialVersionUID;
80
	}
81

82
	public Long getId() {
83
		return id;
84
	}
85

86
	public void setId(Long id) {
87
		this.id = id;
88
	}
89

90
	public String getUsername() {
91
		return username;
92
	}
93

94
	public void setUsername(String username) {
95
		this.username = username;
96
	}
97

98
	public String getPassword() {
99
		return password;
100
	}
101

102
	public void setPassword(String password) {
103
		this.password = password;
104
	}
105

106
	public String getTruename() {
107
		return truename;
108
	}
109

110
	public void setTruename(String truename) {
111
		this.truename = truename;
112
	}
113

114
	public Long getCompanyId() {
115
		return companyId;
116
	}
117

118
	public void setCompanyId(Long companyId) {
119
		this.companyId = companyId;
120
	}
121

122
	public Long getRoleId() {
123
		return roleId;
124
	}
125

126
	public void setRoleId(Long roleId) {
127
		this.roleId = roleId;
128
	}
129

130
	public Long getDepartmentId() {
131
		return departmentId;
132
	}
133

134
	public void setDepartmentId(Long departmentId) {
135
		this.departmentId = departmentId;
136
	}
137

138
	public Long getPositionId() {
139
		return positionId;
140
	}
141

142
	public void setPositionId(Long positionId) {
143
		this.positionId = positionId;
144
	}
145

146
	public String getPhone() {
147
		return phone;
148
	}
149

150
	public void setPhone(String phone) {
151
		this.phone = phone;
152
	}
153

154
	public String getEmail() {
155
		return email;
156
	}
157

158
	public void setEmail(String email) {
159
		this.email = email;
160
	}
161

162
	public Date getCreateTime() {
163
		return createTime;
164
	}
165

166
	public void setCreateTime(Date createTime) {
167
		this.createTime = createTime;
168
	}
169

170
	public Date getModifyTime() {
171
		return modifyTime;
172
	}
173

174
	public void setModifyTime(Date modifyTime) {
175
		this.modifyTime = modifyTime;
176
	}
177

178
	public Integer getIsDel() {
179
		return isDel;
180
	}
181

182
	public void setIsDel(Integer isDel) {
183
		this.isDel = isDel;
184
	}
185 77
}

+ 0 - 36
src/main/java/io/renren/modules/admin/entity/IndustryEntity.java

@ -38,40 +38,4 @@ public class IndustryEntity implements Serializable {
38 38
	 */
39 39
	@TableLogic
40 40
	private Integer isDel;
41

42
	public static long getSerialVersionUID() {
43
		return serialVersionUID;
44
	}
45

46
	public Long getId() {
47
		return id;
48
	}
49

50
	public void setId(Long id) {
51
		this.id = id;
52
	}
53

54
	public String getName() {
55
		return name;
56
	}
57

58
	public void setName(String name) {
59
		this.name = name;
60
	}
61

62
	public Date getCreateTime() {
63
		return createTime;
64
	}
65

66
	public void setCreateTime(Date createTime) {
67
		this.createTime = createTime;
68
	}
69

70
	public Integer getIsDel() {
71
		return isDel;
72
	}
73

74
	public void setIsDel(Integer isDel) {
75
		this.isDel = isDel;
76
	}
77 41
}

+ 2 - 0
src/main/java/io/renren/modules/admin/entity/MeetingEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2
3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6
6 7
import java.io.Serializable;
@ -107,6 +108,7 @@ public class MeetingEntity implements Serializable {
107 108
	/**
108 109
	 * 是否被删除 状态  0:正常   1:删除
109 110
	 */
111
	@TableLogic
110 112
	private Integer isDel;
111 113
112 114
}

+ 2 - 0
src/main/java/io/renren/modules/admin/entity/MoneyAccountEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2
3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6
6 7
import java.io.Serializable;
@ -47,6 +48,7 @@ public class MoneyAccountEntity implements Serializable {
47 48
	/**
48 49
	 * 是否被删除 状态  0:正常   1:删除
49 50
	 */
51
	@TableLogic
50 52
	private Integer isDel;
51 53
52 54
}

+ 2 - 3
src/main/java/io/renren/modules/admin/entity/PaymentEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2
3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6
6 7
import java.math.BigDecimal;
@ -9,8 +10,6 @@ import java.util.Date;
9 10
import lombok.Data;
10 11
11 12
/**
12
 * 
13
 * 
14 13
 * @author chenshun
15 14
 * @email sunlightcs@gmail.com
16 15
 * @date 2020-02-14 14:51:30
@ -84,6 +83,6 @@ public class PaymentEntity implements Serializable {
84 83
	/**
85 84
	 * 是否被删除 状态  0:正常   1:删除
86 85
	 */
86
	@TableLogic
87 87
	private Integer isDel;
88
89 88
}

+ 2 - 0
src/main/java/io/renren/modules/admin/entity/SignEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2
3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6
6 7
import java.io.Serializable;
@ -59,6 +60,7 @@ public class SignEntity implements Serializable {
59 60
	/**
60 61
	 * 是否被删除 状态  0:正常   1:删除
61 62
	 */
63
	@TableLogic
62 64
	private Integer isDel;
63 65
64 66
}

+ 2 - 36
src/main/java/io/renren/modules/admin/entity/SubjectEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2

3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6

6 7
import java.io.Serializable;
@ -35,41 +36,6 @@ public class SubjectEntity implements Serializable {
35 36
	/**
36 37
	 * 是否被删除 状态  0:正常   1:删除
37 38
	 */
39
	@TableLogic
38 40
	private Integer isDel;
39

40
	public static long getSerialVersionUID() {
41
		return serialVersionUID;
42
	}
43

44
	public Long getId() {
45
		return id;
46
	}
47

48
	public void setId(Long id) {
49
		this.id = id;
50
	}
51

52
	public String getName() {
53
		return name;
54
	}
55

56
	public void setName(String name) {
57
		this.name = name;
58
	}
59

60
	public Date getCreateTime() {
61
		return createTime;
62
	}
63

64
	public void setCreateTime(Date createTime) {
65
		this.createTime = createTime;
66
	}
67

68
	public Integer getIsDel() {
69
		return isDel;
70
	}
71

72
	public void setIsDel(Integer isDel) {
73
		this.isDel = isDel;
74
	}
75 41
}

+ 2 - 44
src/main/java/io/renren/modules/admin/entity/TypesOfAttendersEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2

3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6

6 7
import java.io.Serializable;
@ -39,49 +40,6 @@ public class TypesOfAttendersEntity implements Serializable {
39 40
	/**
40 41
	 * 是否被删除 状态  0:正常   1:删除
41 42
	 */
43
	@TableLogic
42 44
	private Integer isDel;
43

44
	public static long getSerialVersionUID() {
45
		return serialVersionUID;
46
	}
47

48
	public Long getId() {
49
		return id;
50
	}
51

52
	public void setId(Long id) {
53
		this.id = id;
54
	}
55

56
	public Long getMeetingId() {
57
		return meetingId;
58
	}
59

60
	public void setMeetingId(Long meetingId) {
61
		this.meetingId = meetingId;
62
	}
63

64
	public String getName() {
65
		return name;
66
	}
67

68
	public void setName(String type) {
69
		this.name = name;
70
	}
71

72
	public Date getCreateTime() {
73
		return createTime;
74
	}
75

76
	public void setCreateTime(Date createTime) {
77
		this.createTime = createTime;
78
	}
79

80
	public Integer getIsDel() {
81
		return isDel;
82
	}
83

84
	public void setIsDel(Integer isDel) {
85
		this.isDel = isDel;
86
	}
87 45
}

+ 2 - 0
src/main/java/io/renren/modules/admin/entity/TypesOfFeeEntity.java

@ -1,6 +1,7 @@
1 1
package io.renren.modules.admin.entity;
2 2
3 3
import com.baomidou.mybatisplus.annotation.TableId;
4
import com.baomidou.mybatisplus.annotation.TableLogic;
4 5
import com.baomidou.mybatisplus.annotation.TableName;
5 6
6 7
import java.math.BigDecimal;
@ -44,6 +45,7 @@ public class TypesOfFeeEntity implements Serializable {
44 45
	/**
45 46
	 * 是否被删除 状态  0:正常   1:删除
46 47
	 */
48
	@TableLogic
47 49
	private Integer isDel;
48 50
49 51
}