🆕 #2258 【小程序】增加自定义组件之物流和售后相关接口

This commit is contained in:
liming1019
2021-08-13 17:55:35 +08:00
committed by GitHub
parent 3f42a162c2
commit e785b1f9a7
16 changed files with 681 additions and 14 deletions

View File

@@ -348,6 +348,18 @@ public class WxMaApiUrlConstants {
String AUDIT_RESULT = "https://api.weixin.qq.com/shop/audit/result";
String GET_MINIAPP_CERTIFICATE = "https://api.weixin.qq.com/shop/audit/get_miniapp_certificate";
}
interface Delivery {
String GET_COMPANY_LIST = "https://api.weixin.qq.com/shop/delivery/get_company_list";
String DELIVERY_SEND = "https://api.weixin.qq.com/shop/delivery/send";
String DELIVERY_RECEIVE = "https://api.weixin.qq.com/shop/delivery/recieve";
}
interface Aftersale {
String AFTERSALE_ADD = "https://api.weixin.qq.com/shop/aftersale/add";
String AFTERSALE_GET = "https://api.weixin.qq.com/shop/aftersale/get";
String AFTERSALE_UPDATE = "https://api.weixin.qq.com/shop/aftersale/update";
}
}
/**