Commit 5f203fe8 by qwmqiuwenmin

fix

parent 0188aa4a
...@@ -61,6 +61,8 @@ public class WxEnterpriseDTO implements Serializable { ...@@ -61,6 +61,8 @@ public class WxEnterpriseDTO implements Serializable {
private String memberSecret; private String memberSecret;
private String contactSecret;
private Date createTime; private Date createTime;
private Date updateTime; private Date updateTime;
...@@ -317,6 +319,15 @@ public class WxEnterpriseDTO implements Serializable { ...@@ -317,6 +319,15 @@ public class WxEnterpriseDTO implements Serializable {
this.wxSecretKey = wxSecretKey; this.wxSecretKey = wxSecretKey;
} }
public String getContactSecret() {
return contactSecret;
}
public void setContactSecret(String contactSecret) {
this.contactSecret = contactSecret;
}
} }
...@@ -60,6 +60,8 @@ public class TabHaobanWxEnterprise implements Serializable { ...@@ -60,6 +60,8 @@ public class TabHaobanWxEnterprise implements Serializable {
private String memberSecret; private String memberSecret;
private String contactSecret;
private Date createTime; private Date createTime;
private Date updateTime; private Date updateTime;
...@@ -306,6 +308,15 @@ public class TabHaobanWxEnterprise implements Serializable { ...@@ -306,6 +308,15 @@ public class TabHaobanWxEnterprise implements Serializable {
this.wxSecretKey = wxSecretKey; this.wxSecretKey = wxSecretKey;
} }
public String getContactSecret() {
return contactSecret;
}
public void setContactSecret(String contactSecret) {
this.contactSecret = contactSecret;
}
} }
\ No newline at end of file
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
<result column="round_logo_url" property="roundLogoUrl" jdbcType="VARCHAR" /> <result column="round_logo_url" property="roundLogoUrl" jdbcType="VARCHAR" />
<result column="wx_secret_key" property="wxSecretKey" jdbcType="VARCHAR" /> <result column="wx_secret_key" property="wxSecretKey" jdbcType="VARCHAR" />
<result column="member_secret" property="memberSecret" jdbcType="VARCHAR"/> <result column="member_secret" property="memberSecret" jdbcType="VARCHAR"/>
<result column="contact_secret" property="contactSecret" jdbcType="VARCHAR"/>
<result column="level" property="level" jdbcType="INTEGER" /> <result column="level" property="level" jdbcType="INTEGER" />
<result column="contact_flag" property="contactFlag" jdbcType="INTEGER" /> <result column="contact_flag" property="contactFlag" jdbcType="INTEGER" />
<result column="bind_flag" property="bindFlag" jdbcType="INTEGER" /> <result column="bind_flag" property="bindFlag" jdbcType="INTEGER" />
...@@ -38,7 +39,7 @@ ...@@ -38,7 +39,7 @@
corp_user_max, corp_full_name, subject_type, verified_end_time, corp_wxqrcode, corp_scale, corp_user_max, corp_full_name, subject_type, verified_end_time, corp_wxqrcode, corp_scale,
corp_industry, corp_sub_industry, location, auth_info, agent, agentid, appid, name, corp_industry, corp_sub_industry, location, auth_info, agent, agentid, appid, name,
square_logo_url, round_logo_url, level, bind_flag, status_flag, create_time, update_time,contact_flag,wx_secret_key square_logo_url, round_logo_url, level, bind_flag, status_flag, create_time, update_time,contact_flag,wx_secret_key
,member_secret ,member_secret,contact_secret
</sql> </sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" > <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
select select
...@@ -59,7 +60,7 @@ ...@@ -59,7 +60,7 @@
auth_info, agent, agentid, auth_info, agent, agentid,
appid, name, square_logo_url, appid, name, square_logo_url,
round_logo_url, level, bind_flag, round_logo_url, level, bind_flag,
status_flag, create_time, update_time,contact_flag,wx_secret_key status_flag, create_time, update_time,contact_flag,wx_secret_key,contact_secret
) )
values (#{wxEnterpriseId,jdbcType=VARCHAR}, #{corpid,jdbcType=VARCHAR}, #{permanentCode,jdbcType=VARCHAR}, values (#{wxEnterpriseId,jdbcType=VARCHAR}, #{corpid,jdbcType=VARCHAR}, #{permanentCode,jdbcType=VARCHAR},
#{corpName,jdbcType=VARCHAR}, #{corpType,jdbcType=VARCHAR}, #{corpSquareLogoUrl,jdbcType=VARCHAR}, #{corpName,jdbcType=VARCHAR}, #{corpType,jdbcType=VARCHAR}, #{corpSquareLogoUrl,jdbcType=VARCHAR},
...@@ -69,7 +70,7 @@ ...@@ -69,7 +70,7 @@
#{authInfo,jdbcType=VARCHAR}, #{agent,jdbcType=VARCHAR}, #{agentid,jdbcType=VARCHAR}, #{authInfo,jdbcType=VARCHAR}, #{agent,jdbcType=VARCHAR}, #{agentid,jdbcType=VARCHAR},
#{appid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{squareLogoUrl,jdbcType=VARCHAR}, #{appid,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{squareLogoUrl,jdbcType=VARCHAR},
#{roundLogoUrl,jdbcType=VARCHAR}, #{level,jdbcType=INTEGER}, #{bindFlag,jdbcType=INTEGER}, #{roundLogoUrl,jdbcType=VARCHAR}, #{level,jdbcType=INTEGER}, #{bindFlag,jdbcType=INTEGER},
#{statusFlag,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},#{contactFlag},#{wxSecretKey} #{statusFlag,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},#{contactFlag},#{wxSecretKey},#{contactSecret}
) )
</insert> </insert>
<insert id="insertSelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanWxEnterprise" > <insert id="insertSelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanWxEnterprise" >
...@@ -162,6 +163,9 @@ ...@@ -162,6 +163,9 @@
<if test="wxSecretKey != null" > <if test="wxSecretKey != null" >
wx_secret_key, wx_secret_key,
</if> </if>
<if test="contactSecret != null" >
contact_secret,
</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides="," > <trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="wxEnterpriseId != null" > <if test="wxEnterpriseId != null" >
...@@ -251,6 +255,9 @@ ...@@ -251,6 +255,9 @@
<if test="wxSecretKey != null" > <if test="wxSecretKey != null" >
#{wxSecretKey,jdbcType=TIMESTAMP}, #{wxSecretKey,jdbcType=TIMESTAMP},
</if> </if>
<if test="contactSecret != null" >
#{contactSecret,jdbcType=TIMESTAMP},
</if>
</trim> </trim>
</insert> </insert>
<update id="updateByPrimaryKeySelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanWxEnterprise" > <update id="updateByPrimaryKeySelective" parameterType="com.gic.haoban.manage.service.entity.TabHaobanWxEnterprise" >
...@@ -340,6 +347,9 @@ ...@@ -340,6 +347,9 @@
<if test="wxSecretKey != null" > <if test="wxSecretKey != null" >
wx_secret_key = #{wxSecretKey,jdbcType=VARCHAR}, wx_secret_key = #{wxSecretKey,jdbcType=VARCHAR},
</if> </if>
<if test="contactSecret != null" >
contact_secret = #{contactSecret,jdbcType=VARCHAR},
</if>
</set> </set>
where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR} where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR}
</update> </update>
...@@ -372,6 +382,7 @@ ...@@ -372,6 +382,7 @@
contact_flag = #{contactFlag,jdbcType=INTEGER}, contact_flag = #{contactFlag,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP}, create_time = #{createTime,jdbcType=TIMESTAMP},
wx_secret_key = #{wxSecretKey,jdbcType=VARCHAR}, wx_secret_key = #{wxSecretKey,jdbcType=VARCHAR},
contact_secret = #{contactSecret,jdbcType=VARCHAR},
update_time = #{updateTime,jdbcType=TIMESTAMP} update_time = #{updateTime,jdbcType=TIMESTAMP}
where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR} where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR}
</update> </update>
......
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