pc端jobTitles 返回期望岗位

This commit is contained in:
chenshaohua
2026-06-16 20:10:39 +08:00
parent 95e29dc805
commit b38fd9eacf
2 changed files with 12 additions and 0 deletions

View File

@@ -76,6 +76,8 @@ public class SysUser extends BaseEntity
//appUserId
private Long appUserId;
private List<String> jobTitles;
/** 部门对象 */
@Excels({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@@ -319,6 +321,14 @@ public class SysUser extends BaseEntity
this.appUserId = appUserId;
}
public List<String> getJobTitles() {
return jobTitles;
}
public void setJobTitles(List<String> jobTitles) {
this.jobTitles = jobTitles;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -343,6 +353,7 @@ public class SysUser extends BaseEntity
.append("dept", getDept())
.append("idCard", getIdCard())
.append("appUserId", getAppUserId())
.append("jobTitles", getJobTitles())
.toString();
}
}