简历以及招聘人基础逻辑修改

This commit is contained in:
2025-12-09 20:09:46 +08:00
parent 8d76eda22f
commit 65255bafb9
18 changed files with 635 additions and 64 deletions

View File

@@ -115,7 +115,7 @@ public class SysUser extends BaseEntity
@ApiModelProperty("是否搬家")
private String relocate;
@ApiModelProperty("")
@ApiModelProperty("个人展示的链接JSON")
private String bestSideJson;
@ApiModelProperty("个人展示的链接地址")
@@ -130,6 +130,12 @@ public class SysUser extends BaseEntity
@ApiModelProperty("用户语音配置信息")
private String userSetJson;
@ApiModelProperty("公司名称")
private String companyName;
@ApiModelProperty("职位名称")
private String jobTitle;
/** 部门对象 */
@Excels({
@Excel(name = "部门名称", targetAttr = "deptName", type = Type.EXPORT),
@@ -473,6 +479,23 @@ public class SysUser extends BaseEntity
this.userSetJson = userSetJson;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
public String getJobTitle() {
return jobTitle;
}
public void setJobTitle(String jobTitle) {
this.jobTitle = jobTitle;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)