From 0bf91738d54b72851f5a7f46916fe737d907574d Mon Sep 17 00:00:00 2001
From: chenjiahe <763432473@qq.com>
Date: 星期四, 31 三月 2022 17:18:43 +0800
Subject: [PATCH] 新增RSA的校验和生成签名方法

---
 src/main/java/com/hx/mp/util/CorpMpUtil.java |   54 +++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 51 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/hx/mp/util/CorpMpUtil.java b/src/main/java/com/hx/mp/util/CorpMpUtil.java
index bd83c76..b541e1c 100644
--- a/src/main/java/com/hx/mp/util/CorpMpUtil.java
+++ b/src/main/java/com/hx/mp/util/CorpMpUtil.java
@@ -71,6 +71,42 @@
         }
         return -1;
     }
+
+    /**
+     * 娣诲姞宸ヤ綔浜哄憳
+     * @param at 璁块棶at
+     * @param userId 鐢ㄦ埛id
+     * @param name 鍚嶇О
+     * @param depId 閮ㄩ棬id
+     * @param position 鑱屼綅
+     * @param tel 鐢佃瘽
+     * @param email 閭
+     * @return 杩斿洖
+     */
+    public static JSONObject addUserObj(String at, String userId, String name, int depId
+            , String position,String tel,String email) {
+
+        if(StringUtils.isEmpty(tel)&&StringUtils.isEmpty(email)){
+            throw new TipsException("娣诲姞浼佷笟寰俊鎵嬫満鍙峰拰閭涓嶈兘閮戒负绌猴紒");
+        }
+
+        JSONObject obj = new JSONObject();
+        obj.put("userid", userId);
+        obj.put("name", name);
+        obj.put("department", depId);
+        obj.put("position", position);
+        obj.put("mobile", tel);
+        obj.put("email", email);
+        obj = HttpURLUtil(MessageFormat.format(URL_ADD_USER, at), obj.toString());
+
+        if(obj == null){
+            obj = new JSONObject();
+        }
+
+        return obj;
+
+    }
+
     /**
      * 鏇存柊宸ヤ綔浜哄憳
      * @param at 璁块棶at
@@ -103,7 +139,7 @@
     /**
      * 鍒犻櫎宸ヤ綔浜哄憳
      * @param at 璁块棶at
-     * @param userId 鐢ㄦ埛id
+     * @param userId 浼佷笟鐢ㄦ埛id
      * @return 杩斿洖
      */
     public static int deleteUser(String at, String userId) {
@@ -128,14 +164,26 @@
         obj.put("userid", userId);
 
         obj = HttpURLUtil(MessageFormat.format(URL_INFO_USER, at,userId), obj.toString());
-        System.out.println("userId:"+userId);
-        System.out.println("obj:"+obj.toString());
+
         if(obj != null) {
             return obj.optInt("errcode", -1);
         }
         return -1;
     }
 
+    /**
+     * 鑾峰彇浼佷笟鐢ㄦ埛淇℃伅
+     * @param at 璁块棶at
+     * @param userId 鐢ㄦ埛id
+     * @return 杩斿洖
+     */
+    public static JSONObject userData(String at, String userId) {
+        JSONObject obj = new JSONObject();
+        obj.put("userid", userId);
+
+        return obj = HttpURLUtil(MessageFormat.format(URL_INFO_USER, at,userId), obj.toString());
+    }
+
 
     /**
      * 娣诲姞閮ㄩ棬

--
Gitblit v1.8.0