|
@@ -9,6 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="xmId" column="xm_id" />
|
|
<result property="xmId" column="xm_id" />
|
|
<result property="xmbh" column="xmbh" />
|
|
<result property="xmbh" column="xmbh" />
|
|
<result property="xmmc" column="xmmc" />
|
|
<result property="xmmc" column="xmmc" />
|
|
|
|
+ <result property="jdDescribe" column="jd_describe" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateBy" column="update_by" />
|
|
@@ -19,7 +20,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectXmConstructionRateVo">
|
|
<sql id="selectXmConstructionRateVo">
|
|
- select id, xm_id, xmbh, xmmc, create_by, create_time, update_by, update_time, is_del, rate_type, photo from xm_construction_rate
|
|
|
|
|
|
+ select id, xm_id, xmbh, xmmc,jd_describe, create_by, create_time, update_by, update_time, is_del, rate_type, photo from xm_construction_rate
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
<select id="selectXmConstructionRateList" parameterType="XmConstructionRate" resultMap="XmConstructionRateResult">
|
|
<select id="selectXmConstructionRateList" parameterType="XmConstructionRate" resultMap="XmConstructionRateResult">
|
|
@@ -46,6 +47,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="xmId != null">xm_id,</if>
|
|
<if test="xmId != null">xm_id,</if>
|
|
<if test="xmbh != null">xmbh,</if>
|
|
<if test="xmbh != null">xmbh,</if>
|
|
<if test="xmmc != null">xmmc,</if>
|
|
<if test="xmmc != null">xmmc,</if>
|
|
|
|
+ <if test="jdDescribe != null">jd_describe,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
@@ -58,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="xmId != null">#{xmId},</if>
|
|
<if test="xmId != null">#{xmId},</if>
|
|
<if test="xmbh != null">#{xmbh},</if>
|
|
<if test="xmbh != null">#{xmbh},</if>
|
|
<if test="xmmc != null">#{xmmc},</if>
|
|
<if test="xmmc != null">#{xmmc},</if>
|
|
|
|
+ <if test="jdDescribe != null">#{jdDescribe},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
@@ -74,6 +77,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="xmId != null">xm_id = #{xmId},</if>
|
|
<if test="xmId != null">xm_id = #{xmId},</if>
|
|
<if test="xmbh != null">xmbh = #{xmbh},</if>
|
|
<if test="xmbh != null">xmbh = #{xmbh},</if>
|
|
<if test="xmmc != null">xmmc = #{xmmc},</if>
|
|
<if test="xmmc != null">xmmc = #{xmmc},</if>
|
|
|
|
+ <if test="jdDescribe != null">jd_describe = #{jdDescribe},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|