|
|
|
|
@ -16,7 +16,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="realEndTime" column="real_end_time" />
|
|
|
|
|
<result property="maintStatus" column="maint_status" />
|
|
|
|
|
<result property="maintCompRate" column="maint_comp_rate" />
|
|
|
|
|
<result property="isFlag" column="is_flag" />
|
|
|
|
|
<result property="remark" column="remark" />
|
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
|
@ -100,7 +99,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="realEndTime != null">real_end_time,</if>
|
|
|
|
|
<if test="maintStatus != null">maint_status,</if>
|
|
|
|
|
<if test="maintCompRate != null">maint_comp_rate,</if>
|
|
|
|
|
<if test="isFlag != null">is_flag,</if>
|
|
|
|
|
<if test="remark != null">remark,</if>
|
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
|
@ -119,7 +117,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="realEndTime != null">#{realEndTime},</if>
|
|
|
|
|
<if test="maintStatus != null">#{maintStatus},</if>
|
|
|
|
|
<if test="maintCompRate != null">#{maintCompRate},</if>
|
|
|
|
|
<if test="isFlag != null">#{isFlag},</if>
|
|
|
|
|
<if test="remark != null">#{remark},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
@ -141,7 +138,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="realEndTime != null">real_end_time = #{realEndTime},</if>
|
|
|
|
|
<if test="maintStatus != null">maint_status = #{maintStatus},</if>
|
|
|
|
|
<if test="maintCompRate != null">maint_comp_rate = #{maintCompRate},</if>
|
|
|
|
|
<if test="isFlag != null">is_flag = #{isFlag},</if>
|
|
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
|
|