Commit 6359190a by 徐高华

企微

parent dc60e9a4
...@@ -16,9 +16,6 @@ public class WxEnterpriseQwDTO implements Serializable { ...@@ -16,9 +16,6 @@ public class WxEnterpriseQwDTO implements Serializable {
private String memberSuiteId; private String memberSuiteId;
// 第三方 // 第三方
private String thirdCorpid; private String thirdCorpid;
// 明文的corpid
private String selfCorpid ;
// 第三方使用的加密的userid // 第三方使用的加密的userid
public boolean needOpenUserId3th() { public boolean needOpenUserId3th() {
return this.wxSecurityType == 2 || this.wxSecurityType == 3; return this.wxSecurityType == 2 || this.wxSecurityType == 3;
...@@ -28,13 +25,6 @@ public class WxEnterpriseQwDTO implements Serializable { ...@@ -28,13 +25,6 @@ public class WxEnterpriseQwDTO implements Serializable {
return this.wxSecurityType == 2 || this.wxSecurityType == 4 ; return this.wxSecurityType == 2 || this.wxSecurityType == 4 ;
} }
public String getSelfCorpid() {
return selfCorpid;
}
public void setSelfCorpid(String selfCorpid) {
this.selfCorpid = selfCorpid;
}
public String getDkSuiteId() { public String getDkSuiteId() {
return dkSuiteId; return dkSuiteId;
} }
......
...@@ -81,7 +81,6 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService { ...@@ -81,7 +81,6 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService {
logger.info("会员小程序未配置,自建应用"); logger.info("会员小程序未配置,自建应用");
qw.setMemberCorpid(wxEnterprise.getWxCorpid()); qw.setMemberCorpid(wxEnterprise.getWxCorpid());
} }
qw.setSelfCorpid(wxEnterprise.getWxCorpid());
logger.info("企微所有corpid信息={}",JSON.toJSON(qw)); logger.info("企微所有corpid信息={}",JSON.toJSON(qw));
return qw; return qw;
} }
......
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