peng
2025-09-26 31f7453c6e307909534d760fb1c929eff741cf7c
1
2
3
4
5
6
7
8
9
10
11
12
13
package cn.lili.modules.lmk.enums.general;
 
import lombok.AllArgsConstructor;
 
@AllArgsConstructor
public enum GenerateCouponStausEnum {
    NOT_GENERATE("没有生成"),
    GENERATE("生成");
 
    private String des;
 
 
}