1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.aps.core.enums;
|
| public enum REDIS_LOCK_KEY {
|
| /*钣金工单计划任务*/
| PLATE_ORDER_PLAN("PLAN_TASK:PLATE_ORDER_PLAN");
|
| private String key;
|
| public String getKey() {
| return key;
| }
|
| REDIS_LOCK_KEY(String key) {
| this.key = key;
| }
| }
|
|