修改返回期望薪资

This commit is contained in:
chenshaohua
2026-06-16 23:17:25 +08:00
parent 20e29544e6
commit 666c49aa11
6 changed files with 98 additions and 16 deletions

View File

@@ -76,8 +76,12 @@ public class SysUser extends BaseEntity
//appUserId
private Long appUserId;
//岗位名称组
private List<String> jobTitles;
//薪资区间
private String experience;
/** 部门对象 */
@Excels({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@@ -329,6 +333,14 @@ public class SysUser extends BaseEntity
this.jobTitles = jobTitles;
}
public String getExperience() {
return experience;
}
public void setExperience(String experience) {
this.experience = experience;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
@@ -354,6 +366,7 @@ public class SysUser extends BaseEntity
.append("idCard", getIdCard())
.append("appUserId", getAppUserId())
.append("jobTitles", getJobTitles())
.append("experience", getExperience())
.toString();
}
}