|
@@ -75,6 +75,10 @@ public class SysUserEntity implements Serializable {
|
|
|
*/
|
|
|
private String deptName;
|
|
|
|
|
|
+ private Integer storeId;
|
|
|
+
|
|
|
+ private String roleType;
|
|
|
+
|
|
|
private Set<String> permsSet;
|
|
|
|
|
|
/**
|
|
@@ -167,6 +171,22 @@ public class SysUserEntity implements Serializable {
|
|
|
return mobile;
|
|
|
}
|
|
|
|
|
|
+ public Integer getStoreId() {
|
|
|
+ return storeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStoreId(Integer storeId) {
|
|
|
+ this.storeId = storeId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRoleType() {
|
|
|
+ return roleType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRoleType(String roleType) {
|
|
|
+ this.roleType = roleType;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 设置:状态 0:禁用 1:正常
|
|
|
*
|