-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Expand file tree
/
Copy pathWxTalentService.java
More file actions
56 lines (50 loc) · 2.29 KB
/
WxTalentService.java
File metadata and controls
56 lines (50 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package me.chanjar.weixin.channel.api;
import me.chanjar.weixin.channel.bean.talent.TalentOrderDetailParam;
import me.chanjar.weixin.channel.bean.talent.TalentOrderDetailResponse;
import me.chanjar.weixin.channel.bean.talent.TalentOrderListParam;
import me.chanjar.weixin.channel.bean.talent.TalentOrderListResponse;
import me.chanjar.weixin.channel.bean.talent.TalentWindowProductDetailParam;
import me.chanjar.weixin.channel.bean.talent.TalentWindowProductDetailResponse;
import me.chanjar.weixin.channel.bean.talent.TalentWindowProductListParam;
import me.chanjar.weixin.channel.bean.talent.TalentWindowProductListResponse;
import me.chanjar.weixin.common.error.WxErrorException;
/**
* 微信小店-带货助手服务接口
*
* @author <a href="https://github.com/features/copilot">GitHub Copilot</a>
*/
public interface WxTalentService {
/**
* <a href="https://developers.weixin.qq.com/doc/store/talent/openapi/order/api_get_order_list.html">获取佣金单列表</a>
*
* @param param 查询参数
* @return 佣金单列表
* @throws WxErrorException 接口调用异常
*/
TalentOrderListResponse getOrderList(TalentOrderListParam param) throws WxErrorException;
/**
* <a href="https://developers.weixin.qq.com/doc/store/talent/openapi/order/api_get_order_detail.html">获取佣金单详情</a>
*
* @param param 查询参数
* @return 佣金单详情
* @throws WxErrorException 接口调用异常
*/
TalentOrderDetailResponse getOrderDetail(TalentOrderDetailParam param) throws WxErrorException;
/**
* <a href="https://developers.weixin.qq.com/doc/store/talent/openapi/window/api_get_product_list.html">获取达人橱窗商品列表</a>
*
* @param param 查询参数
* @return 橱窗商品列表
* @throws WxErrorException 接口调用异常
*/
TalentWindowProductListResponse getWindowProductList(TalentWindowProductListParam param) throws WxErrorException;
/**
* <a href="https://developers.weixin.qq.com/doc/store/talent/openapi/window/api_get_product_detail.html">获取达人橱窗商品详情</a>
*
* @param param 查询参数
* @return 橱窗商品详情
* @throws WxErrorException 接口调用异常
*/
TalentWindowProductDetailResponse getWindowProductDetail(TalentWindowProductDetailParam param)
throws WxErrorException;
}