求职意向添加 ai推荐岗位 推荐行业

This commit is contained in:
zk
2026-07-02 20:45:09 +08:00
parent 38cd49d292
commit f626d3def0
2 changed files with 18 additions and 0 deletions
@@ -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;