1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package cn.lili.modules.promotion.entity.enums;
|
| /**
| * 优惠券折扣类型
| *
| * @author Chopper
| * @since 2020-03-19 9:36 上午
| */
| public enum CouponTypeEnum {
|
| /**
| * 枚举
| */
| DISCOUNT("打折"), PRICE("减免现金");
|
| private final String description;
|
| CouponTypeEnum(String str) {
| this.description = str;
| }
|
| public String description() {
| return description;
| }
| }
|
|