|
@@ -10,6 +10,8 @@
|
|
|
<id property="id" column="id"/>
|
|
|
<result property="projectId" column="project_id"/>
|
|
|
<result property="ydwz" column="ydwz"/>
|
|
|
+ <!-- 新增:用地单位 -->
|
|
|
+ <result property="yddw" column="yddw"/>
|
|
|
<result property="qs" column="qs"/>
|
|
|
<result property="djq" column="djq"/>
|
|
|
<result property="jsgm" column="jsgm"/>
|
|
@@ -30,9 +32,9 @@
|
|
|
|
|
|
<!-- 新增 -->
|
|
|
<insert id="add" parameterType="com.siwei.apply.domain.Jsgcghxk">
|
|
|
- INSERT INTO t_jsgcghxk (id, project_id, ydwz, qs, djq, jsgm, zsbh, fzjg, fz_date, has_onchain,
|
|
|
+ INSERT INTO t_jsgcghxk (id, project_id, ydwz, yddw, qs, djq, jsgm, zsbh, fzjg, fz_date, has_onchain,
|
|
|
creator_id, created_at, updated_at)
|
|
|
- VALUES (#{id}, #{projectId}, #{ydwz}, #{qs}, #{djq}, #{jsgm}, #{zsbh}, #{fzjg}, #{fzDate},
|
|
|
+ VALUES (#{id}, #{projectId}, #{ydwz}, #{yddw}, #{qs}, #{djq}, #{jsgm}, #{zsbh}, #{fzjg}, #{fzDate},
|
|
|
false, #{creatorId}, now(), now())
|
|
|
</insert>
|
|
|
|
|
@@ -50,6 +52,7 @@
|
|
|
<set>
|
|
|
<if test="projectId != null">project_id = #{projectId},</if>
|
|
|
<if test="ydwz != null">ydwz = #{ydwz},</if>
|
|
|
+ <if test="yddw != null">yddw = #{yddw},</if>
|
|
|
<if test="qs != null">qs = #{qs},</if>
|
|
|
<if test="djq != null">djq = #{djq},</if>
|
|
|
<if test="jsgm != null">jsgm = #{jsgm},</if>
|