mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 08:25:07 +08:00
mall 下单日志
This commit is contained in:
@ -0,0 +1,30 @@
|
||||
package cn.iocoder.yudao.module.trade.enums.aftersale;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
/**
|
||||
* 订单操作类型的枚举
|
||||
*
|
||||
* @author 陈賝
|
||||
* @since 2023/7/6 15:31
|
||||
*/
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
public enum OrderOperateTypeEnum {
|
||||
|
||||
/**
|
||||
* 用户下单
|
||||
*/
|
||||
ORDER(0, "用户下单"),
|
||||
;
|
||||
|
||||
// 类型
|
||||
private final Integer type;
|
||||
// 描述
|
||||
private final String description;
|
||||
|
||||
public String description() {
|
||||
return description;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user