Commit 5850fef2 by 徐高华

Merge branch 'developer' into 'master'

Developer

See merge request !208
parents 780b3059 91c8b159
......@@ -192,10 +192,10 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService {
if(mix3th && mixdk) {
return 2 ;
}
if(!mix3th && mixdk) {
if(mix3th && !mixdk) {
return 3 ;
}
if(mix3th && !mixdk) {
if(!mix3th && mixdk) {
return 4 ;
}
return 0 ;
......@@ -228,7 +228,7 @@ public class WxEnterpriseServiceImpl implements WxEnterpriseService {
mixdk = true ;
}
int wxType = this.getType(mix3th, mixdk) ;
logger.info("更新企微加密类型,corpid3th={},corpidDk={},wxSecurityType={}",corpid3th,corpidDk,wxType);
logger.info("计算企微加密类型,corpid3th={},corpidDk={},wxSecurityType={}",corpid3th,corpidDk,wxType);
return wxType ;
}
......
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