1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| package com.stylefeng.guns.modular.shunfeng.task.base;
|
| /**
| * @Description 按时间点发布的任务类型
| * @author Leeyns
| * @date 2016年5月17日 下午7:22:28
| */
| public enum TimeJobType {
| UNLOCK("UNLOCK","是否过期"),
| SDFE("UNLOCK","是否过期111"),
| DSGQ("DSGQ","是否拼房失败");
| private String type;
| private String desc;
| private TimeJobType(String type, String desc) {
| this.type = type;
| this.desc = desc;
| }
| public String getType() {
| return type;
| }
| public void setType(String type) {
| this.type = type;
| }
| public String getDesc() {
| return desc;
| }
| public void setDesc(String desc) {
| this.desc = desc;
| }
|
| }
|
|