创建订单修改
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.chaozhanggui.system.cashierservice.bean;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum OrderPlatformTypeEnum {
|
||||
PC("pc"),
|
||||
CASH("cash"),
|
||||
MINI_APP("miniapp");
|
||||
private final String value;
|
||||
|
||||
OrderPlatformTypeEnum(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user