Commit 56de5247 by guojuxing

添加字段accountGroupIds

parent 952fd64b
......@@ -55,6 +55,11 @@ public class UserDetailVO implements Serializable{
*/
private Integer passwordType;
/**
* 账号分组,可以多选,用英文逗号隔开
*/
private String accountGroupIds;
public Integer getUserId() {
return userId;
}
......@@ -126,4 +131,12 @@ public class UserDetailVO implements Serializable{
public void setPasswordType(Integer passwordType) {
this.passwordType = passwordType;
}
public String getAccountGroupIds() {
return accountGroupIds;
}
public void setAccountGroupIds(String accountGroupIds) {
this.accountGroupIds = accountGroupIds;
}
}
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