bug--修复首页虚拟销量和相关产品枚举处理
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
package co.yixiang.enums;
|
||||
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author hupeng
|
||||
* 产品类型枚举
|
||||
*/
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum ProductTypeEnum {
|
||||
|
||||
PINK("pink","拼团"),
|
||||
|
||||
SECKILL("seckill","秒杀"),
|
||||
|
||||
COMBINATION("combination","拼团产品");
|
||||
|
||||
private String value;
|
||||
private String desc;
|
||||
}
|
Reference in New Issue
Block a user