Commit 56c88757 by 徐高华

描述提示

parent b3f21726
......@@ -183,7 +183,21 @@ public class WxEnterpriseController extends WebBaseController {
private String getCorpid(WxEnterpriseDTO wxEnterpriseDTO) {
return Arrays.asList(wxEnterpriseDTO.getWxCorpid(),wxEnterpriseDTO.getOpenCorpid()).stream().filter(str -> StringUtils.isNotBlank(str)).collect(Collectors.joining(" / "));
Integer wxType = wxEnterpriseDTO.getWxSecurityType() ;
String desc = " -- " ;
if(wxType==1) {
desc = "(全部明文)" ;
}
if(wxType==2) {
desc = "(全部密文)" ;
}
if(wxType==3) {
desc = "(第三方密文,代开明文)" ;
}
if(wxType==4) {
desc = "(第三方明文,代开密文)" ;
}
return Arrays.asList(wxEnterpriseDTO.getWxCorpid(),wxEnterpriseDTO.getOpenCorpid()).stream().filter(str -> StringUtils.isNotBlank(str)).collect(Collectors.joining(" / ")) + desc;
}
//gic企业列表
......
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