peng
2025-10-30 62efa4e6c0977bf3b216c59e545a102f0af77d65
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lili.trigger.enums;
 
/**
 * 队列枚举
 *
 * @author Bulbasaur
 */
public enum DelayQueueEnums {
 
 
    /**
     * 促销活动
     */
    PROMOTION("促销活动");
 
    private String description;
 
    DelayQueueEnums(String description) {
        this.description = description;
    }
}