Ver Fonte

1.7.4版本功能优化

JiangChongBo há 2 anos atrás
pai
commit
25e7b9a3f9

+ 5 - 0
src/main/java/com/caimei/controller/wechat/WxAuthApi.java

@@ -219,6 +219,9 @@ public class WxAuthApi {
         List<String> bannerList = (List<String>) paramsMap.get("bannerList");
         String authParty = paramsMap.getString("authParty");
         Integer createBy = paramsMap.getInteger("createBy");
+        String linkMan = paramsMap.getString("linkMan");
+        String linkMobile = paramsMap.getString("linkMobile");
+
         /*
             组装授权数据
          */
@@ -246,6 +249,8 @@ public class WxAuthApi {
         auth.setEmpNum(empNum);
         auth.setLogo(logo);
         auth.setCreateBy(createBy);
+        auth.setLinkMan(linkMan);
+        auth.setLinkMobile(linkMobile);
         // 机构用户编辑授权
         return authService.saveAuth(auth, bannerList, false, 2);
     }