1.新增pc个人,企业单点登录;2.新增监管端单点登录。

This commit is contained in:
chenyanchang
2026-05-24 14:49:27 +08:00
parent fb3099e90f
commit b91d9a4033
10 changed files with 415 additions and 72 deletions

View File

@@ -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();
}
}