Blame view

src/main/java/com/zteits/oa/api/dto/asraop/AsraOpDTO.java 6.35 KB
1b9e8898   王富生   提交
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
  package com.zteits.oa.api.dto.asraop;
  
  import java.util.Date;
  
  import com.zteits.oa.api.base.bean.BaiscDTO;
  /**
   * 工时系统操作员DTO.<br/>
   * 
   * Copyright: Copyright (c) 2017  ZTE-ITS
   * 
   * @ClassName: AmountUtils.java
   * @Description: 
   * @version: v1.0.0
   * @author: wangfs
   * @date: 2018730
   * Modification History:
   * Date             Author          Version            Description
   *---------------------------------------------------------*
   * 2018730      wangfs           v1.0.0               创建
   */
  public class AsraOpDTO  extends BaiscDTO{
  	 /**
  	 * 
  	 */
  	private static final long serialVersionUID = -1744089914187990069L;
  
  	/**主键*/
      private Long id;
  
      /**登录工号*/
      private String loginCode;
  
      /**登录密码*/
      private String loginPassword;
  
      /**操作员姓名*/
      private String opName;
  
      /**员工邮箱*/
      private String email;
  
      /**角色ID*/
      private Long roleId;
  
      /**地市ID*/
      private Long cityId;
  
      /**地市名称*/
      private String cityName;
  
      /**上级领导id 领导:-1*/
      private Long parentId;
  
      /**是否邮件提醒 1:是,0:否*/
      private Integer isRemindEmail;
  
      /**数据状态:1有效,0无效,2:锁定*/
      private Integer dataState;
  
      /**创建人ID*/
      private String createEmpid;
  
      /**创建人*/
      private String createEmpName;
  
      /**创建时间*/
      private Date createDate;
  
      /**修改人*/
      private String modfiyEmpid;
  
      /**修改人*/
      private String modfiyEmpName;
  
      /**修改时间*/
      private Date modfiyDate;
  
      /**描述*/
      private String remark;
  
      /**获取主键*/
      public Long getId() {
          return id;
      }
  
      /**设置主键*/
      public void setId(Long id) {
          this.id = id;
      }
  
      /**获取登录工号*/
      public String getLoginCode() {
          return loginCode;
      }
  
      /**设置登录工号*/
      public void setLoginCode(String loginCode) {
          this.loginCode = loginCode == null ? null : loginCode.trim();
      }
  
      /**获取登录密码*/
      public String getLoginPassword() {
          return loginPassword;
      }
  
      /**设置登录密码*/
      public void setLoginPassword(String loginPassword) {
          this.loginPassword = loginPassword == null ? null : loginPassword.trim();
      }
  
      /**获取操作员姓名*/
      public String getOpName() {
          return opName;
      }
  
      /**设置操作员姓名*/
      public void setOpName(String opName) {
          this.opName = opName == null ? null : opName.trim();
      }
  
      /**获取员工邮箱*/
      public String getEmail() {
          return email;
      }
  
      /**设置员工邮箱*/
      public void setEmail(String email) {
          this.email = email == null ? null : email.trim();
      }
  
      /**获取角色ID*/
      public Long getRoleId() {
          return roleId;
      }
  
      /**设置角色ID*/
      public void setRoleId(Long roleId) {
          this.roleId = roleId;
      }
  
      /**获取地市ID*/
      public Long getCityId() {
          return cityId;
      }
  
      /**设置地市ID*/
      public void setCityId(Long cityId) {
          this.cityId = cityId;
      }
  
      /**获取地市名称*/
      public String getCityName() {
          return cityName;
      }
  
      /**设置地市名称*/
      public void setCityName(String cityName) {
          this.cityName = cityName == null ? null : cityName.trim();
      }
  
      /**获取上级领导id 领导:-1*/
      public Long getParentId() {
          return parentId;
      }
  
      /**设置上级领导id 领导:-1*/
      public void setParentId(Long parentId) {
          this.parentId = parentId;
      }
  
      /**获取是否邮件提醒 1:是,0:否*/
      public Integer getIsRemindEmail() {
          return isRemindEmail;
      }
  
      /**设置是否邮件提醒 1:是,0:否*/
      public void setIsRemindEmail(Integer isRemindEmail) {
          this.isRemindEmail = isRemindEmail;
      }
  
      /**获取数据状态:1有效,0无效,2:锁定*/
      public Integer getDataState() {
          return dataState;
      }
  
      /**设置数据状态:1有效,0无效,2:锁定*/
      public void setDataState(Integer dataState) {
          this.dataState = dataState;
      }
  
      /**获取创建人ID*/
      public String getCreateEmpid() {
          return createEmpid;
      }
  
      /**设置创建人ID*/
      public void setCreateEmpid(String createEmpid) {
          this.createEmpid = createEmpid == null ? null : createEmpid.trim();
      }
  
      /**获取创建人*/
      public String getCreateEmpName() {
          return createEmpName;
      }
  
      /**设置创建人*/
      public void setCreateEmpName(String createEmpName) {
          this.createEmpName = createEmpName == null ? null : createEmpName.trim();
      }
  
      /**获取创建时间*/
      public Date getCreateDate() {
          return createDate;
      }
  
      /**设置创建时间*/
      public void setCreateDate(Date createDate) {
          this.createDate = createDate;
      }
  
      /**获取修改人*/
      public String getModfiyEmpid() {
          return modfiyEmpid;
      }
  
      /**设置修改人*/
      public void setModfiyEmpid(String modfiyEmpid) {
          this.modfiyEmpid = modfiyEmpid == null ? null : modfiyEmpid.trim();
      }
  
      /**获取修改人*/
      public String getModfiyEmpName() {
          return modfiyEmpName;
      }
  
      /**设置修改人*/
      public void setModfiyEmpName(String modfiyEmpName) {
          this.modfiyEmpName = modfiyEmpName == null ? null : modfiyEmpName.trim();
      }
  
      /**获取修改时间*/
      public Date getModfiyDate() {
          return modfiyDate;
      }
  
      /**设置修改时间*/
      public void setModfiyDate(Date modfiyDate) {
          this.modfiyDate = modfiyDate;
      }
  
      /**获取描述*/
      public String getRemark() {
          return remark;
      }
  
      /**设置描述*/
      public void setRemark(String remark) {
          this.remark = remark == null ? null : remark.trim();
      }
  
  	@Override
  	public String toString() {
  		return "AsraOpDTO [id=" + id + ", loginCode=" + loginCode + ", loginPassword=" + loginPassword + ", opName="
  				+ opName + ", email=" + email + ", roleId=" + roleId + ", cityId=" + cityId + ", cityName=" + cityName
  				+ ", parentId=" + parentId + ", isRemindEmail=" + isRemindEmail + ", dataState=" + dataState
  				+ ", createEmpid=" + createEmpid + ", createEmpName=" + createEmpName + ", createDate=" + createDate
  				+ ", modfiyEmpid=" + modfiyEmpid + ", modfiyEmpName=" + modfiyEmpName + ", modfiyDate=" + modfiyDate
  				+ ", remark=" + remark + "]";
  	}
      
  }