Commit d3e69864 by guojuxing

新增/编辑管理员添加标志位,用来操作密码

parent 01c1afc4
......@@ -113,6 +113,10 @@ public class UserDTO implements UserInfo,Serializable{
* 用户资源组授权,可以多选,用英文逗号隔开
*/
private String userResourceIds;
/**
* 1:是编辑操作,并且没修改过密码 2:与1相反
*/
private Integer operPasswordType;
public Integer getUserId() {
return userId;
......@@ -241,4 +245,12 @@ public class UserDTO implements UserInfo,Serializable{
public void setUserResourceIds(String userResourceIds) {
this.userResourceIds = userResourceIds;
}
public Integer getOperPasswordType() {
return operPasswordType;
}
public void setOperPasswordType(Integer operPasswordType) {
this.operPasswordType = operPasswordType;
}
}
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