Commit 16c3365b by 徐高华

Merge branch 'feature/xgh/代开发调整25年' into 'developer'

企微自建转代开发调整

See merge request !2416
parents 512c7657 5bad9b5f
......@@ -211,9 +211,12 @@ public class WxEnterpriseController extends WebBaseController {
if(wxType==5) {
desc = " ( "+wxEnterpriseDTO.getWxaAppid() +" / " + wxEnterpriseDTO.getUrlHost()+") " ;
}
if(wxType==6) {
desc = "仅代开发" ;
}
int newType = this.wxEnterpriseApiService.calcSecretType(wxEnterpriseId) ;
String diff = "";
if(null != wxType && wxType.intValue() != newType && wxType != 5) {
if(null != wxType && wxType.intValue() != newType && wxType != 5 && wxType != 6) {
diff = "*";
}
return Arrays.asList(wxEnterpriseDTO.getWxCorpid(),wxEnterpriseDTO.getOpenCorpid()).stream().filter(str -> StringUtils.isNotBlank(str)).collect(Collectors.joining(" / ")) + desc + diff;
......
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