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