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

cn.binarywang.wx.miniapp.api.WxMaReimburseInvoiceService Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.api;

import cn.binarywang.wx.miniapp.bean.invoice.reimburse.*;
import me.chanjar.weixin.common.error.WxErrorException;

import java.util.List;

/**
 * 电子发票报销方相关接口
 * 接口文档: https://developers.weixin.qq.com/doc/offiaccount/WeChat_Invoice/E_Invoice/Reimburser_API_List.html
 * @author xiaoyu
 * @since 2021-06-10
 */
public interface WxMaReimburseInvoiceService {

  /**
   * 查询报销发票信息
   * @param request {@link InvoiceInfoRequest} 查询报销发票信息参数
   * @return {@link InvoiceInfoResponse} 查询结果
   * @throws WxErrorException 查询失败时
   */
  InvoiceInfoResponse getInvoiceInfo(InvoiceInfoRequest request) throws WxErrorException;


  /**
   * 批量查询报销发票信息
   * @param request {@link InvoiceBatchRequest} 批量查询报销发票信息参数对象
   * @return {@link InvoiceInfoResponse} 查询结果列表
   * @throws WxErrorException 查询失败时
   */
  List getInvoiceBatch(InvoiceBatchRequest request) throws WxErrorException;


  /**
   * 更新发票状态
   * @param request {@link UpdateInvoiceStatusRequest} 更新发票状态参数
   * @throws WxErrorException 更新失败时
   */
  void updateInvoiceStatus(UpdateInvoiceStatusRequest request) throws WxErrorException;


  /**
   * 批量更新发票状态
   * @param request {@link UpdateStatusBatchRequest} 批量更新发票状态参数
   * @throws WxErrorException 更新失败时
   */
  void updateStatusBatch(UpdateStatusBatchRequest request) throws WxErrorException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy