peng
2 天以前 b2a68b1eaa6db1c1456534e084d66fe98e4443f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.lili.modules.lmk.enums.general;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
@AllArgsConstructor
@Getter
public enum PrizeDistributeStatusEnum {
    /**
     * 奖品发放状态
     */
    NOT_WAIT("未中奖"),
    WAIT("待发放"),
    FAILED("发放失败"),
    SUCCESS("已发放");
    private final String description;
}