创建订单修改

This commit is contained in:
SongZhang 2024-10-10 09:35:18 +08:00
parent a1365b0e5f
commit 59c7fc4c9d
1 changed files with 15 additions and 0 deletions

View File

@ -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;
}
}