All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.api.impl.WxCpDepartmentServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.api.impl;

import com.google.gson.JsonElement;
import com.google.gson.JsonParser;
import com.google.gson.reflect.TypeToken;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.util.json.GsonHelper;
import me.chanjar.weixin.cp.api.WxCpDepartmentService;
import me.chanjar.weixin.cp.api.WxCpService;
import me.chanjar.weixin.cp.bean.WxCpDepart;
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;

import java.util.List;

/**
 * 
 *  部门管理接口
 *  Created by BinaryWang on 2017/6/24.
 * 
* * @author Binary Wang */ public class WxCpDepartmentServiceImpl implements WxCpDepartmentService { private WxCpService mainService; public WxCpDepartmentServiceImpl(WxCpService mainService) { this.mainService = mainService; } @Override public Integer create(WxCpDepart depart) throws WxErrorException { String url = "https://qyapi.weixin.qq.com/cgi-bin/department/create"; String responseContent = this.mainService.post(url, depart.toJson()); JsonElement tmpJsonElement = new JsonParser().parse(responseContent); return GsonHelper.getAsInteger(tmpJsonElement.getAsJsonObject().get("id")); } @Override public void update(WxCpDepart group) throws WxErrorException { String url = "https://qyapi.weixin.qq.com/cgi-bin/department/update"; this.mainService.post(url, group.toJson()); } @Override public void delete(Integer departId) throws WxErrorException { String url = "https://qyapi.weixin.qq.com/cgi-bin/department/delete?id=" + departId; this.mainService.get(url, null); } @Override public List list(Integer id) throws WxErrorException { String url = "https://qyapi.weixin.qq.com/cgi-bin/department/list"; if (id != null) { url += "?id=" + id; } String responseContent = this.mainService.get(url, null); JsonElement tmpJsonElement = new JsonParser().parse(responseContent); return WxCpGsonBuilder.INSTANCE.create() .fromJson(tmpJsonElement.getAsJsonObject().get("department"), new TypeToken>() { }.getType() ); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy