Commit 944484e0 by guojuxing

用户列表添加新建时间

parent 278ad19a
......@@ -62,6 +62,11 @@ public class UserListDTO implements Serializable{
*/
private Integer userPosition;
/**
*
*/
private Date createTime;
public Integer getUserId() {
return userId;
}
......@@ -153,4 +158,13 @@ public class UserListDTO implements Serializable{
this.userPosition = userPosition;
return this;
}
public Date getCreateTime() {
return createTime;
}
public UserListDTO setCreateTime(Date createTime) {
this.createTime = createTime;
return this;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment