feat: 提交课表冲突检查相关功能模块
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.roomroot.jwgl.mapper.NDZHPDJYMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.roomroot.jwgl.entity.NDZHPDJY">
|
||||
<result column="编号" property="bh" />
|
||||
<result column="年度综合评定_教研室编号" property="ndzhpd_jysbh" />
|
||||
<result column="教员编号" property="jybh" />
|
||||
<result column="参评" property="cp" />
|
||||
<result column="有教学责任事故" property="yjxzrsg" />
|
||||
<result column="教学责任事故说明" property="jxzrsgsm" />
|
||||
<result column="全年只承担辅讲" property="qnzcdfj" />
|
||||
<result column="教学竞赛获奖" property="jxjshj" />
|
||||
<result column="教学竞赛获奖说明" property="jxjshjsm" />
|
||||
<result column="免评" property="mp" />
|
||||
<result column="职称" property="zc" />
|
||||
<result column="领导评估分" property="ldpgf" />
|
||||
<result column="专家评估分" property="zjpgf" />
|
||||
<result column="同行评估分" property="txpgf" />
|
||||
<result column="学员评估分" property="xypgf" />
|
||||
<result column="综合分" property="zhf" />
|
||||
<result column="学员评估分未达标" property="xypgfwdb" />
|
||||
<result column="排序最后比例" property="pxzhbl" />
|
||||
<result column="A比例之外" property="ablzw" />
|
||||
<result column="预评估结论" property="ypgjl" />
|
||||
<result column="最终结论" property="zzjl" />
|
||||
<result column="备注" property="bz" />
|
||||
<result column="专业技术职务等级" property="zyjszwdj" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
编号, 年度综合评定_教研室编号, 教员编号, 参评, 有教学责任事故, 教学责任事故说明,
|
||||
全年只承担辅讲, 教学竞赛获奖, 教学竞赛获奖说明, 免评, 职称, 领导评估分,
|
||||
专家评估分, 同行评估分, 学员评估分, 综合分, 学员评估分未达标, 排序最后比例,
|
||||
A比例之外, 预评估结论, 最终结论, 备注, 专业技术职务等级
|
||||
</sql>
|
||||
|
||||
<!-- 分页查询年度综合评定_教员列表 -->
|
||||
<select id="selectPageList" resultMap="BaseResultMap">
|
||||
SELECT
|
||||
<include refid="Base_Column_List" />
|
||||
FROM "年度综合评定_教员"
|
||||
WHERE 1=1
|
||||
<if test="ndzhpdy.jybh != null and ndzhpdy.jybh != ''">
|
||||
AND 教员编号 = #{ndzhpdy.jybh}
|
||||
</if>
|
||||
<if test="ndzhpdy.ndzhpd_jysbh != null and ndzhpdy.ndzhpd_jysbh != ''">
|
||||
AND 年度综合评定_教研室编号 = #{ndzhpdy.ndzhpd_jysbh}
|
||||
</if>
|
||||
<if test="ndzhpdy.zc != null and ndzhpdy.zc != ''">
|
||||
AND 职称 LIKE CONCAT('%', #{ndzhpdy.zc}, '%')
|
||||
</if>
|
||||
ORDER BY 教员编号
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user