|
|
|
@ -11,11 +11,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="startTime" column="startTime" />
|
|
|
|
|
<result property="endTime" column="endTime" />
|
|
|
|
|
<result property="dept" column="dept" />
|
|
|
|
|
<result property="tyep" column="tyep" />
|
|
|
|
|
<result property="type" column="type" />
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdExamnumVo">
|
|
|
|
|
select id, userName, examResult, startTime, endTime, dept, tyep from td_examnum
|
|
|
|
|
select id, userName, examResult, startTime, endTime, dept, type from td_examnum
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectTdExamnumList" parameterType="TdExamnum" resultMap="TdExamnumResult">
|
|
|
|
@ -26,7 +26,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="startTime != null "> and startTime = #{startTime}</if>
|
|
|
|
|
<if test="endTime != null "> and endTime = #{endTime}</if>
|
|
|
|
|
<if test="dept != null and dept != ''"> and dept = #{dept}</if>
|
|
|
|
|
<if test="tyep != null and tyep != ''"> and tyep = #{tyep}</if>
|
|
|
|
|
<if test="type != null and type != ''"> and type = #{type}</if>
|
|
|
|
|
</where>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
@ -43,7 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="startTime != null">startTime,</if>
|
|
|
|
|
<if test="endTime != null">endTime,</if>
|
|
|
|
|
<if test="dept != null">dept,</if>
|
|
|
|
|
<if test="tyep != null">tyep,</if>
|
|
|
|
|
<if test="type != null">type,</if>
|
|
|
|
|
</trim>
|
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
<if test="userName != null">#{userName},</if>
|
|
|
|
@ -51,7 +51,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="startTime != null">#{startTime},</if>
|
|
|
|
|
<if test="endTime != null">#{endTime},</if>
|
|
|
|
|
<if test="dept != null">#{dept},</if>
|
|
|
|
|
<if test="tyep != null">#{tyep},</if>
|
|
|
|
|
<if test="type != null">#{type},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
@ -63,7 +63,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="startTime != null">startTime = #{startTime},</if>
|
|
|
|
|
<if test="endTime != null">endTime = #{endTime},</if>
|
|
|
|
|
<if test="dept != null">dept = #{dept},</if>
|
|
|
|
|
<if test="tyep != null">tyep = #{tyep},</if>
|
|
|
|
|
<if test="type != null">type = #{type},</if>
|
|
|
|
|
</trim>
|
|
|
|
|
where id = #{id}
|
|
|
|
|
</update>
|
|
|
|
|