添加条件—企业或者管理员搜索简历信息

This commit is contained in:
chenshaohua
2026-07-21 19:34:23 +08:00
parent 9d3c664361
commit 45d8494a40

View File

@@ -194,4 +194,16 @@ public class AppUser extends BaseEntity
/** 投递申请ID推荐简历关联查询时填充非app_user表字段 */ /** 投递申请ID推荐简历关联查询时填充非app_user表字段 */
@TableField(exist = false) @TableField(exist = false)
private Long applyId; private Long applyId;
/**简历更新时间,企业查询求职者使用*/
@TableField(exist = false)
private String finishTime;
@TableField(exist = false)
@ApiModelProperty("学校名称")
private String schoolName;
@TableField(exist = false)
@ApiModelProperty("毕业时间")
private String endTime;
} }