|
@@ -1,5 +1,9 @@
|
|
|
package org.fouram.core.plugin.weixin.cp.core;
|
|
|
|
|
|
+import me.chanjar.weixin.cp.api.WxCpDepartmentService;
|
|
|
+import me.chanjar.weixin.cp.api.WxCpUserService;
|
|
|
+import me.chanjar.weixin.cp.api.impl.WxCpDepartmentServiceImpl;
|
|
|
+import me.chanjar.weixin.cp.api.impl.WxCpUserServiceImpl;
|
|
|
import org.fouram.core.util.ConfConfig;
|
|
|
|
|
|
import me.chanjar.weixin.cp.api.WxCpService;
|
|
@@ -14,6 +18,8 @@ import me.chanjar.weixin.cp.config.impl.WxCpDefaultConfigImpl;
|
|
|
public class WXCpMessageBase {
|
|
|
|
|
|
public static final WxCpService service = new WxCpServiceImpl();
|
|
|
+ public static final WxCpUserService userService;
|
|
|
+ public static final WxCpDepartmentService departService;
|
|
|
static {
|
|
|
WxCpDefaultConfigImpl configStorage = new WxCpDefaultConfigImpl();
|
|
|
configStorage.setCorpId(ConfConfig.getConfigString("wxCp.corpId"));
|
|
@@ -21,5 +27,9 @@ public class WXCpMessageBase {
|
|
|
configStorage.setAgentId(ConfConfig.getConfigInteger("wxCp.message.agentId"));
|
|
|
// 初始化基础service
|
|
|
service.setWxCpConfigStorage(configStorage);
|
|
|
+ // 初始化用户service
|
|
|
+ userService = new WxCpUserServiceImpl(service);
|
|
|
+ // 初始化部门service
|
|
|
+ departService = new WxCpDepartmentServiceImpl(service);
|
|
|
}
|
|
|
}
|