修改bug
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
package org.jiayunet.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.Instant;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 用户求职意向表(bg_user_job_intention)
|
||||
@@ -13,7 +16,7 @@ import java.time.Instant;
|
||||
* @author zk
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "bg_user_job_intention")
|
||||
@TableName(value = "bg_user_job_intention", autoResultMap = true)
|
||||
public class UserJobIntention {
|
||||
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
@@ -22,14 +25,17 @@ public class UserJobIntention {
|
||||
/** 用户ID */
|
||||
private Long userId;
|
||||
|
||||
/** 意向岗位类型ID列表(JSON数组),节点可能为任意级别 */
|
||||
private String categoryIds;
|
||||
/** 意向岗位类型ID列表,节点可能为任意级别 */
|
||||
@TableField(typeHandler = JacksonTypeHandler.class)
|
||||
private List<Long> categoryIds;
|
||||
|
||||
/** 意向城市编码列表(JSON数组),节点可能为任意级别 */
|
||||
private String regionCodes;
|
||||
/** 意向城市编码列表,节点可能为任意级别 */
|
||||
@TableField(typeHandler = JacksonTypeHandler.class)
|
||||
private List<String> regionCodes;
|
||||
|
||||
/** 意向行业ID列表(JSON数组),节点可能为任意级别 */
|
||||
private String industryIds;
|
||||
/** 意向行业ID列表,节点可能为任意级别 */
|
||||
@TableField(typeHandler = JacksonTypeHandler.class)
|
||||
private List<Long> industryIds;
|
||||
|
||||
/** 工作类型 0=全职 1=实习 */
|
||||
private Integer employmentType;
|
||||
|
||||
Reference in New Issue
Block a user