mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
add 新增运营端小程序查询订单详情接口
This commit is contained in:
@@ -65,6 +65,8 @@ public class Constants {
|
||||
|
||||
public static final String JSOWELL = "举视";
|
||||
|
||||
public static final String WAN_CHE_CHONG_MINI_PROGRAM = "万车充小程序";
|
||||
|
||||
// 希晓运营商的merchantId
|
||||
public static final String XIXIAO_MERCHANT_ID_PRD = "35";
|
||||
|
||||
|
||||
@@ -35,4 +35,14 @@ public enum StartModeEnum {
|
||||
this.value = value;
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
// 通过value获取label
|
||||
public static String getLabelByValue(String value) {
|
||||
for (StartModeEnum item : StartModeEnum.values()) {
|
||||
if (item.getValue().equals(value)) {
|
||||
return item.getLabel();
|
||||
}
|
||||
}
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user