后台协议添加,快递鸟相关常数,正式服务器相关参数改动,快递鸟相关接口,苹果相关cid配置,改变提示,登录接口改为post请求,微信跳转连接

This commit is contained in:
liuyingfang
2023-05-22 16:34:08 +08:00
parent 329aafb487
commit 01335276c7
26 changed files with 210 additions and 41 deletions

View File

@@ -88,6 +88,7 @@ public class MerChantOrderDTO {
private MerchantMemberCode mercMenberCode;
private String MercOrderNo;
/**
* 参数转换

View File

@@ -225,6 +225,8 @@ public class MerchantOrder {
*/
private BigDecimal mercFee;
private String thirdSendNo;
/**
* 节约金额
*/

View File

@@ -13,8 +13,9 @@ import lombok.Getter;
@AllArgsConstructor
public enum LogisticProvider {
YTO("YTO","圆通快递");
YTO("YTO","圆通快递"),
STO("STO", "申通快递"),
HTKY("HTKY", "百世快递");
private String code;
private String desc;