自动化立体仓库 - WMS系统
#
cl
4 天以前 581a064dd9d85e4c1fa151edef0602df3de76ad9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.iot.constant;
 
public final class IotSysConfigCodes {
 
    private IotSysConfigCodes() {
    }
 
    public static final String MQTT_ENABLED = "iot.mqtt.enabled";
 
    public static final String TOPIC_EGRESS_STOW = "iot.topic.egress_stow";
    public static final String TOPIC_EGRESS_PICK = "iot.topic.egress_pick";
    public static final String TOPIC_EGRESS_FEEDBACK = "iot.topic.egress_feedback";
    public static final String TOPIC_INGRESS_STOW = "iot.topic.ingress_stow";
    public static final String TOPIC_INGRESS_PICK = "iot.topic.ingress_pick";
    public static final String TOPIC_INGRESS_FEEDBACK = "iot.topic.ingress_feedback";
}