xiangpei
2025-05-23 930f47e1bd5f07a794a16d0ea48ee229d84bd7a6
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;
    }
}