|
@@ -98,6 +98,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="periodType != null">period_type,</if>
|
|
|
<if test="periodStartingTime != null">period_starting_time,</if>
|
|
|
<if test="periodEndTime != null">period_end_time,</if>
|
|
|
+ <if test="periodStatus != null">period_status,</if>
|
|
|
<if test="viewStartTime != null">view_start_time,</if>
|
|
|
<if test="viewEndTime != null">view_end_time,</if>
|
|
|
<if test="lastJoinTime != null">last_join_time,</if>
|
|
@@ -116,6 +117,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="periodType != null">#{periodType},</if>
|
|
|
<if test="periodStartingTime != null">#{periodStartingTime},</if>
|
|
|
<if test="periodEndTime != null">#{periodEndTime},</if>
|
|
|
+ <if test="periodStatus != null">#{periodStatus},</if>
|
|
|
<if test="viewStartTime != null">#{viewStartTime},</if>
|
|
|
<if test="viewEndTime != null">#{viewEndTime},</if>
|
|
|
<if test="lastJoinTime != null">#{lastJoinTime},</if>
|
|
@@ -137,6 +139,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="periodType != null">period_type = #{periodType},</if>
|
|
|
<if test="periodStartingTime != null">period_starting_time = #{periodStartingTime},</if>
|
|
|
<if test="periodEndTime != null">period_end_time = #{periodEndTime},</if>
|
|
|
+ <if test="periodStatus != null">period_status = #{periodStatus},</if>
|
|
|
<if test="viewStartTime != null">view_start_time = #{viewStartTime},</if>
|
|
|
<if test="viewEndTime != null">view_end_time = #{viewEndTime},</if>
|
|
|
<if test="lastJoinTime != null">last_join_time = #{lastJoinTime},</if>
|