zxl
23 小时以前 933c5dd8ed6715290c6863a8a8d2797582f62af7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lili.modules.lmk.enums.general;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * 统计搜索类型枚举
 */
@Getter
@AllArgsConstructor
public enum StatisticsSearchTypeEnum {
 
    TODAY("今天"),
    YESTERDAY("昨天"),
    LAST_SEVEN("过去七天"),
    LAST_THIRTY("过去一个月");
 
    private final String desc;
 
 
}