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

me.chanjar.weixin.cp.api.WxCpOAService Maven / Gradle / Ivy

The newest version!
package me.chanjar.weixin.cp.api;

import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.cp.bean.WxCpApprovalDataResult;
import me.chanjar.weixin.cp.bean.WxCpCheckinData;
import me.chanjar.weixin.cp.bean.WxCpCheckinOption;
import me.chanjar.weixin.cp.bean.WxCpDialRecord;

import java.util.Date;
import java.util.List;

/**
 * @author Element
 * @Package me.chanjar.weixin.cp.api
 * @date 2019-04-06 10:52
 * @Description: 
 *     企业微信OA相关接口
 *
 * 
*/ public interface WxCpOAService { /** *
   *     获取打卡数据
   *     API doc : https://work.weixin.qq.com/api/doc#90000/90135/90262
   * 
* * @param openCheckinDataType 打卡类型。1:上下班打卡;2:外出打卡;3:全部打卡 * @param starttime 获取打卡记录的开始时间 * @param endtime 获取打卡记录的结束时间 * @param userIdList 需要获取打卡记录的用户列表 */ List getCheckinData(Integer openCheckinDataType, Date starttime, Date endtime, List userIdList) throws WxErrorException; /** *
   *     获取打卡规则
   *     API doc : https://work.weixin.qq.com/api/doc#90000/90135/90263
   * 
* * @param datetime 需要获取规则的当天日期 * @param userIdList 需要获取打卡规则的用户列表 * @return * @throws WxErrorException */ List getCheckinOption(Date datetime, List userIdList) throws WxErrorException; /** *
   *     获取审批数据
   *     通过本接口来获取公司一段时间内的审批记录。一次拉取调用最多拉取10000个审批记录,可以通过多次拉取的方式来满足需求,但调用频率不可超过600次/分。
   *     API doc : https://work.weixin.qq.com/api/doc#90000/90135/91530
   * 
* * @param starttime 获取审批记录的开始时间 * @param endtime 获取审批记录的结束时间 * @param nextSpnum 第一个拉取的审批单号,不填从该时间段的第一个审批单拉取 * @return * @throws WxErrorException */ WxCpApprovalDataResult getApprovalData(Date starttime, Date endtime, Long nextSpnum) throws WxErrorException; List getDialRecord(Date starttime, Date endtime, Integer offset, Integer limit) throws WxErrorException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy