|
|
@ -33,6 +33,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<result property="maintainRemark" column="maintain_remark" />
|
|
|
|
<result property="maintainRemark" column="maintain_remark" />
|
|
|
|
<result property="shemichengdu" column="shemichengdu" />
|
|
|
|
<result property="shemichengdu" column="shemichengdu" />
|
|
|
|
<result property="part" column="part" />
|
|
|
|
<result property="part" column="part" />
|
|
|
|
|
|
|
|
<result property="maintainStand" column="maintain_stand" jdbcType="VARCHAR"/>
|
|
|
|
|
|
|
|
<result property="destoryStand" column="destory_stand" jdbcType="VARCHAR"/>
|
|
|
|
</resultMap>
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
<sql id="selectTdPropertyInfoVo">
|
|
|
|
<sql id="selectTdPropertyInfoVo">
|
|
|
@ -69,6 +71,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="maintainRemark != null and maintainRemark != ''"> and maintain_remark = #{maintainRemark}</if>
|
|
|
|
<if test="maintainRemark != null and maintainRemark != ''"> and maintain_remark = #{maintainRemark}</if>
|
|
|
|
<if test="shemichengdu != null and shemichengdu != ''"> and shemichengdu = #{shemichengdu}</if>
|
|
|
|
<if test="shemichengdu != null and shemichengdu != ''"> and shemichengdu = #{shemichengdu}</if>
|
|
|
|
<if test="part != null and part != ''"> and part = #{part}</if>
|
|
|
|
<if test="part != null and part != ''"> and part = #{part}</if>
|
|
|
|
|
|
|
|
<if test="maintainStand != null and maintainStand != ''"> and maintain_stand = #{maintainStand}</if>
|
|
|
|
|
|
|
|
<if test="destoryStand != null and destoryStand != ''"> and destory_stand = #{destoryStand}</if>
|
|
|
|
</where>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
@ -113,6 +117,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="maintainRemark != null">maintain_remark,</if>
|
|
|
|
<if test="maintainRemark != null">maintain_remark,</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu,</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu,</if>
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
<if test="part != null">part,</if>
|
|
|
|
|
|
|
|
<if test="maintainStand != null">maintain_stand,</if>
|
|
|
|
|
|
|
|
<if test="destoryStand != null">destory_stand,</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
<if test="id != null">#{id},</if>
|
|
|
|
<if test="id != null">#{id},</if>
|
|
|
@ -143,6 +149,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="maintainRemark != null">#{maintainRemark},</if>
|
|
|
|
<if test="maintainRemark != null">#{maintainRemark},</if>
|
|
|
|
<if test="shemichengdu != null">#{shemichengdu},</if>
|
|
|
|
<if test="shemichengdu != null">#{shemichengdu},</if>
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
<if test="part != null">#{part},</if>
|
|
|
|
|
|
|
|
<if test="maintainStand != null">#{maintainStand},</if>
|
|
|
|
|
|
|
|
<if test="destoryStand != null">#{destoryStand},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
</insert>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
|
@ -176,6 +184,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="maintainRemark != null">maintain_remark = #{maintainRemark},</if>
|
|
|
|
<if test="maintainRemark != null">maintain_remark = #{maintainRemark},</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu = #{shemichengdu},</if>
|
|
|
|
<if test="shemichengdu != null">shemichengdu = #{shemichengdu},</if>
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
<if test="part != null">part = #{part},</if>
|
|
|
|
|
|
|
|
<if test="maintainStand != null">maintain_stand = #{maintainStand},</if>
|
|
|
|
|
|
|
|
<if test="destoryStand != null">destory_stand = #{destoryStand},</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
where id = #{id}
|
|
|
|
where id = #{id}
|
|
|
|
</update>
|
|
|
|
</update>
|
|
|
|