求职意向添加 ai推荐岗位 推荐行业
This commit is contained in:
@@ -26,6 +26,16 @@ public class JobIntentionDto {
|
|||||||
*/
|
*/
|
||||||
private List<Long> industryIds;
|
private List<Long> industryIds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AI推荐岗位类型ID列表
|
||||||
|
*/
|
||||||
|
private List<Long> aiCategoryIds;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AI推荐行业ID列表
|
||||||
|
*/
|
||||||
|
private List<Long> aiIndustryIds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 就业类型:0=全职,1=实习
|
* 就业类型:0=全职,1=实习
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -38,6 +38,14 @@ public class UserJobIntention {
|
|||||||
@TableField(typeHandler = LongListTypeHandler.class)
|
@TableField(typeHandler = LongListTypeHandler.class)
|
||||||
private List<Long> industryIds;
|
private List<Long> industryIds;
|
||||||
|
|
||||||
|
/** AI推荐岗位类型ID列表 */
|
||||||
|
@TableField(typeHandler = LongListTypeHandler.class)
|
||||||
|
private List<Long> aiCategoryIds;
|
||||||
|
|
||||||
|
/** AI推荐行业ID列表 */
|
||||||
|
@TableField(typeHandler = LongListTypeHandler.class)
|
||||||
|
private List<Long> aiIndustryIds;
|
||||||
|
|
||||||
/** 工作类型 0=全职 1=实习 */
|
/** 工作类型 0=全职 1=实习 */
|
||||||
private Integer employmentType;
|
private Integer employmentType;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user