Files
education/backend/roomroot-jwgl/target/classes/com/roomroot/jwgl/mapper/JXRZKSBZSPBMapper.xml
T
2026-08-21 14:39:03 +08:00

42 lines
1.9 KiB
XML

<?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.JXRZKSBZSPBMapper">
<resultMap id="BaseResultMap" type="com.roomroot.jwgl.entity.JXRZKSBZSPB">
<result column="编号" property="bh" />
<result column="名称" property="mc" />
<result column="核算开始日期" property="hsksrq" />
<result column="核算结束日期" property="hsjsrq" />
<result column="总课时量" property="zksl" />
<result column="优质课时量" property="yzksl" />
<result column="总补助金额" property="zbzje" />
<result column="优质课时量最高比例" property="yzkslzgbl" />
<result column="优质课时量比例" property="yzkslbl" />
<result column="课时补助标准编号" property="ksbzbzbh" />
<result column="课时核算标准编号" property="kshsbzbh" />
<result column="核算日期" property="hsrq" />
<result column="状态" property="zt" />
<result column="任务类别" property="rwlb" />
</resultMap>
<sql id="Base_Column_List">
编号, 名称, 核算开始日期, 核算结束日期, 总课时量, 优质课时量, 总补助金额,
优质课时量最高比例, 优质课时量比例, 课时补助标准编号, 课时核算标准编号,
核算日期, 状态, 任务类别
</sql>
<select id="selectPageList" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List" />
FROM "教学日志课时补助审批表"
WHERE 1=1
<if test="cond.zt != null and cond.zt != ''">
AND 状态 = #{cond.zt}
</if>
<if test="cond.rwlb != null and cond.rwlb != ''">
AND 任务类别 = #{cond.rwlb}
</if>
ORDER BY 核算日期 DESC
</select>
</mapper>