feat: Add salary composition, welfare benefits, and work schedule fields to Job model and database

This commit is contained in:
2026-07-20 11:30:22 +08:00
parent f07b5f77cd
commit 9334290fd6
4 changed files with 161 additions and 1 deletions

View File

@@ -48,6 +48,18 @@ public class Job extends BaseEntity
@ApiModelProperty("最大薪资(元)")
private Long maxSalary;
@Excel(name = "薪资范围与构成")
@ApiModelProperty("薪资范围与构成(薪资数值范围使用 minSalary/maxSalary对应业务字典 salary_composition多项及手动输入值以英文逗号分隔")
private String salaryComposition;
@Excel(name = "福利待遇")
@ApiModelProperty("福利待遇,对应业务字典 welfare_benefits多项及手动输入值以英文逗号分隔")
private String welfareBenefits;
@Excel(name = "工作时间安排")
@ApiModelProperty("工作时间安排,对应业务字典 work_schedule多项及手动输入值以英文逗号分隔")
private String workSchedule;
@TableField(exist = false)
private Long salaryMin;