zxl
2025-05-30 8c700eb37f4c005aea3afd5a49dbf3640533efd3
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;
    }
}