岗位列表添加犯规学历要求

This commit is contained in:
zk
2026-06-30 10:17:06 +08:00
parent 2243197f6f
commit aa2f2a50c9
3 changed files with 8 additions and 0 deletions
@@ -22,6 +22,9 @@ public class JobDto {
/** 薪资描述 */
private String salary;
/** 学历要求 0=不限 1=大专 2=本科 3=硕士 4=博士 */
private Integer education;
/** 公司名称 */
private String companyName;
@@ -25,6 +25,9 @@ public class JobListItemVo {
/** 薪资描述 */
private String salary;
/** 学历要求 0=不限 1=大专 2=本科 3=硕士 4=博士 */
private Integer education;
/** 公司ID */
private Long companyId;
@@ -6,6 +6,7 @@
<id column="id" property="id"/>
<result column="title" property="title"/>
<result column="salary" property="salary"/>
<result column="education" property="education"/>
<result column="tags" property="tags" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/>
<result column="source_url" property="sourceUrl"/>
<result column="required_industry_id" property="requiredIndustryId"/>
@@ -33,6 +34,7 @@
j.id,
j.title,
j.salary,
j.education,
j.tags,
j.source_url,
j.required_industry_id,