New file |
| | |
| | | package cn.lili.modules.lmk.enums.general; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | @AllArgsConstructor |
| | | public enum PrizeNumberUseEnum { |
| | | /** |
| | | * 抽奖状态 |
| | | */ |
| | | WAIT("待使用"), |
| | | USED("已使用"); |
| | | private final String description; |
| | | } |
New file |
| | |
| | | package cn.lili.modules.lmk.enums.general; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Getter; |
| | | |
| | | @Getter |
| | | @AllArgsConstructor |
| | | public enum PrizeUserActionEnum { |
| | | /** |
| | | * 获取优惠卷的方式 |
| | | */ |
| | | SYSTEM("系统赠送"), |
| | | BUY("购买"), |
| | | SHARE("分享"), |
| | | SEE_SHOP("看商城"), |
| | | SEE_VIDEO("看视频"); |
| | | private final String description; |
| | | } |