添加企业对简历投递反馈

This commit is contained in:
chenshaohua
2026-07-21 17:15:43 +08:00
parent 36fb767b8e
commit 950e360a4e
6 changed files with 44 additions and 2 deletions

View File

@@ -273,4 +273,10 @@ public class Job extends BaseEntity
//简历是否被查看
@TableField(exist = false)
private String isView;
@TableField(exist = false)
private String filterStatus;
@TableField(exist = false)
private String filterReason;
}

View File

@@ -50,4 +50,10 @@ public class JobApply extends BaseEntity
@ApiModelProperty("是否已被查看 0未查看 1已查看")
private String isView;
@ApiModelProperty("筛选状态 同意0,不同意2")
private String filterStatus;
@ApiModelProperty("筛选原因")
private String filterReason;
}