Commit 88ec5ba1 by 墨竹

fix:tab_haoban_wx_application增加字段

parent a8b75126
......@@ -3,6 +3,7 @@
<mapper namespace="com.gic.haoban.manage.service.dao.mapper.WxApplicationMapper">
<resultMap id="BaseResultMap" type="com.gic.haoban.manage.service.entity.TabHaobanWxApplication">
<id column="wx_application_id" property="wxApplicationId" jdbcType="VARCHAR"/>
<result column="corpid" property="corpid" jdbcType="VARCHAR"/>
<result column="site_id" property="siteId" jdbcType="VARCHAR"/>
<result column="name" property="name" jdbcType="VARCHAR"/>
<result column="permanent_code" property="permanentCode" jdbcType="VARCHAR"/>
......@@ -16,7 +17,7 @@
<result column="update_time" property="updateTime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
wx_application_id, site_id, name, permanent_code, agent_name, agent_id, application_type,
wx_application_id,corpid, site_id, name, permanent_code, agent_name, agent_id, application_type,
wx_enterprise_id, status_flag, create_time, update_time,is_customized_app
</sql>
......@@ -39,6 +40,9 @@
<if test="wxApplicationId != null">
wx_application_id,
</if>
<if test="corpid != null">
corpid,
</if>
<if test="siteId != null">
site_id,
</if>
......@@ -77,6 +81,9 @@
<if test="wxApplicationId != null">
#{wxApplicationId,jdbcType=VARCHAR},
</if>
<if test="corpid != null">
#{corpid,jdbcType=VARCHAR},
</if>
<if test="siteId != null">
#{siteId,jdbcType=VARCHAR},
</if>
......@@ -116,6 +123,9 @@
parameterType="com.gic.haoban.manage.service.entity.TabHaobanWxApplication">
update tab_haoban_wx_application
<set>
<if test="corpid != null">
corpid = #{corpid,jdbcType=VARCHAR},
</if>
<if test="siteId != null">
site_id = #{siteId,jdbcType=VARCHAR},
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment