|
@@ -16,6 +16,7 @@
|
|
|
<result property="startTime" column="start_time"/>
|
|
|
<result property="endTime" column="end_time"/>
|
|
|
<result property="useXk" column="use_xk"/>
|
|
|
+ <result property="xkDetail" column="xk_detail"/>
|
|
|
<result property="createDept" column="create_dept"/>
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
<result property="createTime" column="create_time"/>
|
|
@@ -36,6 +37,7 @@
|
|
|
start_time,
|
|
|
end_time,
|
|
|
use_xk,
|
|
|
+ xk_detail,
|
|
|
create_dept,
|
|
|
create_by,
|
|
|
create_time,
|
|
@@ -67,6 +69,7 @@
|
|
|
<if test="startTime != null ">and start_time = #{startTime}</if>
|
|
|
<if test="endTime != null ">and end_time = #{endTime}</if>
|
|
|
<if test="useXk != null and useXk != ''">and use_xk = #{useXk}</if>
|
|
|
+ <if test="xkDetail != null and xkDetail != ''">and xk_detail = #{xkDetail}</if>
|
|
|
<if test="createDept != null ">and create_dept = #{createDept}</if>
|
|
|
</where>
|
|
|
order by end_time DESC
|
|
@@ -141,6 +144,7 @@
|
|
|
<if test="startTime != null">start_time,</if>
|
|
|
<if test="endTime != null">end_time,</if>
|
|
|
<if test="useXk != null">use_xk,</if>
|
|
|
+ <if test="xkDetail != null">xk_detail,</if>
|
|
|
<if test="createDept != null">create_dept,</if>
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
@@ -159,6 +163,7 @@
|
|
|
<if test="startTime != null">#{startTime},</if>
|
|
|
<if test="endTime != null">#{endTime},</if>
|
|
|
<if test="useXk != null">#{useXk},</if>
|
|
|
+ <if test="xkDetail != null">#{xkDetail},</if>
|
|
|
<if test="createDept != null">#{createDept},</if>
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
@@ -181,6 +186,7 @@
|
|
|
<if test="startTime != null">start_time = #{startTime},</if>
|
|
|
<if test="endTime != null">end_time = #{endTime},</if>
|
|
|
<if test="useXk != null">use_xk = #{useXk},</if>
|
|
|
+ <if test="xkDetail != null">xk_detail = #{xkDetail},</if>
|
|
|
<if test="createDept != null">create_dept = #{createDept},</if>
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|