|
@@ -4,15 +4,16 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.annotation.IEnum;
|
|
|
|
|
|
/**
|
|
|
+ * 优惠券类型(按使用场景划分)
|
|
|
* @auther zhongcp
|
|
|
* @create 2022 2022/3/7 2:30 下午
|
|
|
* @describe
|
|
|
*/
|
|
|
public enum CouponTypeEnum implements IEnum<Integer> {
|
|
|
|
|
|
- TICKET_ORDER(1, "用户盲票购买优惠券"),
|
|
|
- SITE_CONSUME(2, "用户门店消费优惠券"),
|
|
|
- CHANNEL(3, "经销商盲票采购优惠券");
|
|
|
+ TICKET_ORDER(1, "盲票购买"),
|
|
|
+ SITE_CONSUME(2, "门店消费"),
|
|
|
+ CHANNEL(3, "经销商采购");
|
|
|
|
|
|
|
|
|
private final int value;
|