#
tzsk
2024-11-14 fd0ab28fe906d3328ee1170c1a7daa203935ffc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.core.enums;
 
public enum RedisKeyType {
 
    SHUTTLE("shuttle_wrk_no_"),
    LIFT("lift_wrk_no_"),
    MAP("realtimeBasMap_")
    ;
 
    public String key;
 
    RedisKeyType(String key) {
        this.key = key;
    }
}