修改返回期望薪资
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user