岗位列表添加犯规学历要求
This commit is contained in:
@@ -22,6 +22,9 @@ public class JobDto {
|
|||||||
/** 薪资描述 */
|
/** 薪资描述 */
|
||||||
private String salary;
|
private String salary;
|
||||||
|
|
||||||
|
/** 学历要求 0=不限 1=大专 2=本科 3=硕士 4=博士 */
|
||||||
|
private Integer education;
|
||||||
|
|
||||||
/** 公司名称 */
|
/** 公司名称 */
|
||||||
private String companyName;
|
private String companyName;
|
||||||
|
|
||||||
|
|||||||
@@ -25,6 +25,9 @@ public class JobListItemVo {
|
|||||||
/** 薪资描述 */
|
/** 薪资描述 */
|
||||||
private String salary;
|
private String salary;
|
||||||
|
|
||||||
|
/** 学历要求 0=不限 1=大专 2=本科 3=硕士 4=博士 */
|
||||||
|
private Integer education;
|
||||||
|
|
||||||
/** 公司ID */
|
/** 公司ID */
|
||||||
private Long companyId;
|
private Long companyId;
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
<id column="id" property="id"/>
|
<id column="id" property="id"/>
|
||||||
<result column="title" property="title"/>
|
<result column="title" property="title"/>
|
||||||
<result column="salary" property="salary"/>
|
<result column="salary" property="salary"/>
|
||||||
|
<result column="education" property="education"/>
|
||||||
<result column="tags" property="tags" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/>
|
<result column="tags" property="tags" typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler"/>
|
||||||
<result column="source_url" property="sourceUrl"/>
|
<result column="source_url" property="sourceUrl"/>
|
||||||
<result column="required_industry_id" property="requiredIndustryId"/>
|
<result column="required_industry_id" property="requiredIndustryId"/>
|
||||||
@@ -33,6 +34,7 @@
|
|||||||
j.id,
|
j.id,
|
||||||
j.title,
|
j.title,
|
||||||
j.salary,
|
j.salary,
|
||||||
|
j.education,
|
||||||
j.tags,
|
j.tags,
|
||||||
j.source_url,
|
j.source_url,
|
||||||
j.required_industry_id,
|
j.required_industry_id,
|
||||||
|
|||||||
Reference in New Issue
Block a user