🎨 【小程序】增加退货组件相关接口,同时绑定/解绑物流账号接口增加缺失返回值

This commit is contained in:
hellocder
2023-09-29 08:43:21 +00:00
committed by Binary Wang
parent f53eed6779
commit d4bc91a102
17 changed files with 334 additions and 43 deletions

View File

@@ -872,4 +872,18 @@ public class WxMaApiUrlConstants {
String QUERY_PUBLISH_GOODS_URL = "https://api.weixin.qq.com/xpay/query_publish_goods?pay_sig=%s";
}
/**
* 退货组件
* <pre>
* 文档地址https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/express/business/express_sale_return.html
* </pre>
*
*/
public interface ExpressDeliveryReturn{
String ADD_DELIVERY_RETURN_URL = "https://api.weixin.qq.com/cgi-bin/express/delivery/return/add";
String GET_DELIVERY_RETURN_URL = "https://api.weixin.qq.com/cgi-bin/express/delivery/return/get";
String UNBIND_DELIVERY_RETURN_URL = "https://api.weixin.qq.com/cgi-bin/express/delivery/return/unbind";
}
}