订单主表加字段 启动类型 预约时间

This commit is contained in:
2023-03-24 15:55:54 +08:00
parent 6772cf3de0
commit a624d492ea
3 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
package com.jsowell.common.enums.ykc;
/**
* 启动类型enum
*/
public enum StartTypeEnum {
NOW("now", "立即启动"),
APPOINTMENT("appointment", "预约启动"),
;
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;
}
StartTypeEnum(String value, String label) {
this.value = value;
this.label = label;
}
}