创建订单修改
This commit is contained in:
parent
a1365b0e5f
commit
59c7fc4c9d
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue