面谈/面试

This commit is contained in:
zhangchenbiao
2024-03-19 14:50:56 +08:00
parent e5cbf96280
commit db47ccb51c
18 changed files with 894 additions and 49 deletions

View File

@@ -5,6 +5,7 @@
<id column="id" jdbcType="BIGINT" property="id" />
<result column="line_id" jdbcType="BIGINT" property="lineId" />
<result column="partner_id" jdbcType="VARCHAR" property="partnerId" />
<result column="region_id" jdbcType="BIGINT" property="regionId" />
<result column="interview_date" jdbcType="DATE" property="interviewDate" />
<result column="start_time" jdbcType="TIMESTAMP" property="startTime" />
<result column="end_time" jdbcType="TIMESTAMP" property="endTime" />
@@ -24,4 +25,8 @@
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
</resultMap>
<select id="getInterviewInfo" resultMap="BaseResultMap">
select * from xfsg_line_interview where line_id = #{lineId} and interview_type = #{interviewType} and deleted = '0'
</select>
</mapper>