update 保存可疑订单

This commit is contained in:
2023-03-14 14:25:22 +08:00
parent a89c8de90a
commit fc8fdca08a
3 changed files with 158 additions and 7 deletions

View File

@@ -0,0 +1,36 @@
package com.jsowell.common.enums.ykc;
/**
* 启动方式
*/
public enum StartModeEnum {
WEB("0", "后管启动"),
APP("1","用户app启动"),
CARD("2", "卡启动"),
;
private String value;
private String label;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
StartModeEnum(String value, String label) {
this.value = value;
this.label = label;
}
}