mall 下单日志

This commit is contained in:
chenchen
2023-07-07 14:06:32 +08:00
parent f492797fba
commit 284506b356
10 changed files with 328 additions and 1 deletions

View File

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