ERPUser.java
1.03 KB
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
package com.huaheng.api.erp.domain;
import java.util.Date;
public class ERPUser {
private String userName;
private String loginName;
private int deptId;
private Date createTime;//创建日期
private Date updateTime;//
public int getFPostDept() {
return deptId;
}
public void setFPostDept(int FPostDept) {
this.deptId = FPostDept;
}
public String getFName() {
return userName;
}
public void setFName(String FName) {
this.loginName= FName;
this.userName = FName;
}
public String getLoginName() {
return loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public Date getfCreateDate() {
return createTime;
}
public void setfCreateDate(Date fCreateDate) {
this.createTime = fCreateDate;
}
public Date getfModifyDate() {
return updateTime;
}
public void setfModifyDate(Date fModifyDate) {
this.updateTime = fModifyDate;
}
}