|
@@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="provideDeptId" column="provide_dept_id" />
|
|
|
<result property="provideDeptName" column="provide_dept_name" />
|
|
|
<result property="applyTime" column="apply_time" />
|
|
|
+ <result property="shareType" column="share_type" />
|
|
|
<result property="frequency" column="frequency" />
|
|
|
<result property="duration" column="duration" />
|
|
|
<result property="startTime" column="start_time" />
|
|
@@ -61,6 +62,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
provide_dept_id,
|
|
|
provide_dept_name,
|
|
|
apply_time,
|
|
|
+ share_type,
|
|
|
frequency,
|
|
|
CONCAT(start_time,' - ',end_time) duration,
|
|
|
start_time,
|
|
@@ -96,6 +98,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
a.provide_dept_id,
|
|
|
a.provide_dept_name,
|
|
|
a.apply_time,
|
|
|
+ a.share_type,
|
|
|
a.frequency,
|
|
|
CONCAT(
|
|
|
a.start_time,
|
|
@@ -145,6 +148,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="provideDeptId != null">provide_dept_id,</if>
|
|
|
<if test="provideDeptName != null">provide_dept_name,</if>
|
|
|
<if test="applyTime != null">apply_time,</if>
|
|
|
+ <if test="shareType != null">share_type,</if>
|
|
|
<if test="frequency != null">frequency,</if>
|
|
|
<if test="startTime != null">start_time,</if>
|
|
|
<if test="endTime != null">end_time,</if>
|
|
@@ -160,6 +164,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="provideDeptId != null">#{provideDeptId},</if>
|
|
|
<if test="provideDeptName != null">#{provideDeptName},</if>
|
|
|
<if test="applyTime != null">#{applyTime},</if>
|
|
|
+ <if test="shareType != null">#{shareType},</if>
|
|
|
<if test="frequency != null">#{frequency},</if>
|
|
|
<if test="startTime != null">#{startTime},</if>
|
|
|
<if test="endTime != null">#{endTime},</if>
|
|
@@ -220,6 +225,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="provideDeptId != null">provide_dept_id = #{provideDeptId},</if>
|
|
|
<if test="provideDeptName != null">provide_dept_name = #{provideDeptName},</if>
|
|
|
<if test="applyTime != null">apply_time = #{applyTime},</if>
|
|
|
+ <if test="shareType != null">share_type = #{shareType},</if>
|
|
|
<if test="frequency != null">frequency = #{frequency},</if>
|
|
|
<if test="startTime != null">start_time = #{startTime},</if>
|
|
|
<if test="endTime != null">end_time = #{endTime},</if>
|