-
-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Expand file tree
/
Copy pathWxChannelQicService.java
More file actions
67 lines (59 loc) · 1.86 KB
/
Copy pathWxChannelQicService.java
File metadata and controls
67 lines (59 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
package me.chanjar.weixin.channel.api;
import me.chanjar.weixin.channel.bean.base.WxChannelBaseResponse;
import me.chanjar.weixin.channel.bean.qic.InspectCodeResponse;
import me.chanjar.weixin.channel.bean.qic.InspectConfigResponse;
import me.chanjar.weixin.channel.bean.qic.RegisterLogisticsRequest;
import me.chanjar.weixin.channel.bean.qic.SubmitConfigResponse;
import me.chanjar.weixin.channel.bean.qic.SubmitInspectRequest;
import me.chanjar.weixin.common.error.WxErrorException;
/**
* 视频号小店 质检管理接口.
*/
public interface WxChannelQicService {
/**
* 查询质检仓配置.
*
* @return 质检仓配置
* @throws WxErrorException 异常
*/
InspectConfigResponse getInspectConfig() throws WxErrorException;
/**
* 查询送检配置模板信息.
*
* @param orderId 订单号(可选)
* @return 送检配置模板信息
* @throws WxErrorException 异常
*/
SubmitConfigResponse getSubmitConfig(String orderId) throws WxErrorException;
/**
* 查询送检配置模板信息.
*
* @return 送检配置模板信息
* @throws WxErrorException 异常
*/
SubmitConfigResponse getSubmitConfig() throws WxErrorException;
/**
* 打印质检码.
*
* @param orderId 订单号
* @return 质检码详情
* @throws WxErrorException 异常
*/
InspectCodeResponse printInspectCode(String orderId) throws WxErrorException;
/**
* 绑定送检信息.
*
* @param request 送检信息请求
* @return 基础响应
* @throws WxErrorException 异常
*/
WxChannelBaseResponse submitInspectInfo(SubmitInspectRequest request) throws WxErrorException;
/**
* 自寄快递送检.
*
* @param request 自寄快递请求
* @return 基础响应
* @throws WxErrorException 异常
*/
WxChannelBaseResponse registerLogistics(RegisterLogisticsRequest request) throws WxErrorException;
}