fix:【MALL 商城】linux 部署时,express.client 配置项,因为大写无法识别
This commit is contained in:
parent
1138376f7a
commit
fe0840cde8
|
@ -12,9 +12,9 @@ import lombok.Getter;
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public enum ExpressClientEnum {
|
public enum ExpressClientEnum {
|
||||||
|
|
||||||
NOT_PROVIDE("not-provide","未提供"),
|
NOT_PROVIDE("not_provide","未提供"),
|
||||||
KD_NIAO("kd-niao", "快递鸟"),
|
KD_NIAO("kd_niao", "快递鸟"),
|
||||||
KD_100("kd-100", "快递100");
|
KD_100("kd_100", "快递100");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 快递服务商唯一编码
|
* 快递服务商唯一编码
|
||||||
|
|
|
@ -349,7 +349,7 @@ yudao:
|
||||||
receive-expire-time: 14d # 收货的过期时间
|
receive-expire-time: 14d # 收货的过期时间
|
||||||
comment-expire-time: 7d # 评论的过期时间
|
comment-expire-time: 7d # 评论的过期时间
|
||||||
express:
|
express:
|
||||||
client: KD_NIAO
|
client: kd_100
|
||||||
kd-niao:
|
kd-niao:
|
||||||
api-key: cb022f1e-48f1-4c4a-a723-9001ac9676b8
|
api-key: cb022f1e-48f1-4c4a-a723-9001ac9676b8
|
||||||
business-id: 1809751
|
business-id: 1809751
|
||||||
|
|
Loading…
Reference in New Issue