1.添加岗位有用预约是否已读

This commit is contained in:
chenshaohua
2026-07-15 18:48:32 +08:00
parent c105223c8c
commit 7b6f431327
2 changed files with 5 additions and 1 deletions

View File

@@ -103,4 +103,7 @@ public class InterviewInvitation extends BaseEntity {
*/ */
@ApiModelProperty("备注") @ApiModelProperty("备注")
private String remark; private String remark;
@ApiModelProperty("是否已读0未读1已读")
private String isRead;
} }

View File

@@ -26,6 +26,7 @@
<result property="updateBy" column="update_by"/> <result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/> <result property="updateTime" column="update_time"/>
<result property="remark" column="remark"/> <result property="remark" column="remark"/>
<result property="isRead" column="is_read"/>
</resultMap> </resultMap>
<!-- VO 带公司名和岗位名继承基础映射jobTitle 来自关联查询的实时数据) --> <!-- VO 带公司名和岗位名继承基础映射jobTitle 来自关联查询的实时数据) -->
@@ -39,7 +40,7 @@
select id, company_id, job_id, user_id, apply_id, interview_time, select id, company_id, job_id, user_id, apply_id, interview_time,
interview_method, meeting_link, meeting_password, interview_location, interview_method, meeting_link, meeting_password, interview_location,
contact_phone, interviewer_name, company_name, job_name, status, del_flag, contact_phone, interviewer_name, company_name, job_name, status, del_flag,
create_by, create_time, update_by, update_time, remark create_by, create_time, update_by, update_time, remark,is_read
from interview_invitation from interview_invitation
</sql> </sql>