1.新增入职管理上传档案 2.解决面试跟踪上传后的缓存bug

This commit is contained in:
lw 2024-07-09 20:58:37 +08:00
parent a42aa31423
commit beaf24852f
2 changed files with 7 additions and 1 deletions

View File

@ -134,6 +134,11 @@ public class EntryManage implements Serializable {
@Excel(name = "入职周知", cellType = Excel.ColumnType.TEXT)
private String file;
@TableField(value = "dossier")
@Excel(name = "档案", cellType = Excel.ColumnType.TEXT)
private String dossier;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}

View File

@ -12,6 +12,7 @@
<result property="postName" column="post_name" jdbcType="VARCHAR"/>
<result property="userName" column="user_name" jdbcType="VARCHAR"/>
<result property="file" column="file" />
<result property="dossier" column="dossier" />
<result property="hrId" column="hr_id" jdbcType="BIGINT"/>
<result property="hrName" column="hr_name" jdbcType="VARCHAR"/>
<result property="finalPassDate" column="final_pass_date" jdbcType="DATE"/>
@ -26,7 +27,7 @@
post_id,post_name,
user_name,hr_id,hr_name,
final_pass_date,join_date,actual_join_date,
entry_fail_reason,is_entry,file
entry_fail_reason,is_entry,file,dossier
</sql>
<select id="listBySelect" resultMap="BaseResultMap">