Commit b99f847f by jinxin

新增是否支持配置回调地址字段

parent 8e99b23b
...@@ -126,6 +126,18 @@ public class WxEnterpriseDTO implements Serializable { ...@@ -126,6 +126,18 @@ public class WxEnterpriseDTO implements Serializable {
* secret * secret
*/ */
private String secretVal; private String secretVal;
/**
* 自建应用是否支持配置回调地址 0 不支持 1支持
*/
private Integer callbackFlag;
public Integer getCallbackFlag() {
return callbackFlag;
}
public void setCallbackFlag(Integer callbackFlag) {
this.callbackFlag = callbackFlag;
}
public String getAgentId() { public String getAgentId() {
return agentId; return agentId;
......
...@@ -43,6 +43,18 @@ public class WxEnterpriseQO implements Serializable { ...@@ -43,6 +43,18 @@ public class WxEnterpriseQO implements Serializable {
* 应用类型,0第三方 1自建 * 应用类型,0第三方 1自建
*/ */
private Integer appType; private Integer appType;
/**
* 自建应用是否支持配置回调地址 0 不支持 1支持
*/
private Integer callbackFlag;
public Integer getCallbackFlag() {
return callbackFlag;
}
public void setCallbackFlag(Integer callbackFlag) {
this.callbackFlag = callbackFlag;
}
public String getWxEnterpriseId() { public String getWxEnterpriseId() {
return wxEnterpriseId; return wxEnterpriseId;
......
...@@ -97,6 +97,18 @@ public class TabHaobanWxEnterprise implements Serializable { ...@@ -97,6 +97,18 @@ public class TabHaobanWxEnterprise implements Serializable {
* 应用类型,0第三方 1自建 * 应用类型,0第三方 1自建
*/ */
private Integer appType; private Integer appType;
/**
* 自建应用是否支持配置回调地址 0 不支持 1支持
*/
private Integer callbackFlag;
public Integer getCallbackFlag() {
return callbackFlag;
}
public void setCallbackFlag(Integer callbackFlag) {
this.callbackFlag = callbackFlag;
}
public Integer getAppType() { public Integer getAppType() {
return appType; return appType;
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
<result column="open_corpid" property="openCorpid"/> <result column="open_corpid" property="openCorpid"/>
<result column="wxa_appid" property="wxaAppid" /> <result column="wxa_appid" property="wxaAppid" />
<result column="url_host" property="urlHost"/> <result column="url_host" property="urlHost"/>
<result column="callback_flag" property="callbackFlag"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
...@@ -52,7 +53,7 @@ ...@@ -52,7 +53,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,wx_secret_key_last_time,member_secret_last_time,contact_secret_last_time square_logo_url, round_logo_url, level, bind_flag, status_flag, create_time, update_time,contact_flag,wx_secret_key,wx_secret_key_last_time,member_secret_last_time,contact_secret_last_time
,member_secret,contact_secret,agree_external_userid_flag,agree_external_userid_time,external_flag,userid_flag ,wx_security_type , wx_corpid , open_corpid , auto_active_flag , wxa_appid , url_host ,member_secret,contact_secret,agree_external_userid_flag,agree_external_userid_time,external_flag,userid_flag ,wx_security_type , wx_corpid , open_corpid , auto_active_flag , wxa_appid , url_host,callback_flag
</sql> </sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String"> <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String">
select select
...@@ -185,6 +186,9 @@ ...@@ -185,6 +186,9 @@
<if test="null != wxSecurityType"> <if test="null != wxSecurityType">
wx_security_type , wx_security_type ,
</if> </if>
<if test="null != callbackFlag">
callback_flag ,
</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="wxEnterpriseId != null"> <if test="wxEnterpriseId != null">
...@@ -301,6 +305,9 @@ ...@@ -301,6 +305,9 @@
<if test="null != wxSecurityType"> <if test="null != wxSecurityType">
#{wxSecurityType} , #{wxSecurityType} ,
</if> </if>
<if test="null != callbackFlag">
#{callbackFlag} ,
</if>
</trim> </trim>
</insert> </insert>
...@@ -425,7 +432,10 @@ ...@@ -425,7 +432,10 @@
wxa_appid = #{wxaAppid}, wxa_appid = #{wxaAppid},
</if> </if>
<if test="null != urlHost"> <if test="null != urlHost">
url_host = #{urlHost} url_host = #{urlHost},
</if>
<if test="null != callbackFlag">
callback_flag = #{callbackFlag}
</if> </if>
</set> </set>
where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR} where wx_enterprise_id = #{wxEnterpriseId,jdbcType=VARCHAR}
......
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