1.新增pc个人,企业单点登录;2.新增监管端单点登录。
This commit is contained in:
@@ -73,6 +73,9 @@ public class SysUser extends BaseEntity
|
||||
@Excel(name = "身份证/信用代码")
|
||||
private String idCard;
|
||||
|
||||
//appUserId
|
||||
private Long appUserId;
|
||||
|
||||
/** 部门对象 */
|
||||
@Excels({
|
||||
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
|
||||
@@ -308,6 +311,14 @@ public class SysUser extends BaseEntity
|
||||
this.idCard = idCard;
|
||||
}
|
||||
|
||||
public Long getAppUserId() {
|
||||
return appUserId;
|
||||
}
|
||||
|
||||
public void setAppUserId(Long appUserId) {
|
||||
this.appUserId = appUserId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
@@ -331,6 +342,7 @@ public class SysUser extends BaseEntity
|
||||
.append("remark", getRemark())
|
||||
.append("dept", getDept())
|
||||
.append("idCard", getIdCard())
|
||||
.append("appUserId", getAppUserId())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user