顺丰轨迹查询处理

This commit is contained in:
taozi
2020-12-17 21:44:34 +08:00
committed by xuwenbo
parent 62ef709ca6
commit 8f3ebf0560
6 changed files with 60 additions and 8 deletions

View File

@ -0,0 +1,18 @@
package co.yixiang.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author hupeng
* 快递公司编码相关枚举
*/
@Getter
@AllArgsConstructor
public enum ShipperCodeEnum {
SF("SF","顺丰速运");
private String value;
private String desc;
}