自动化立体仓库 - WCS系统
Junjie
2023-12-08 ff2b6e2329ae2c5d3fede2f9413170fd6e87c46c
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;
    }
}