自动化立体仓库 - WMS系统
1
zhangchao
2024-11-01 8cdd187911b0d660274e352dcbb41c296dcf0693
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.common.constant;
 
/**
 * @author pang.jiabao
 * @description AGV相关对接地址
 * @createDate 2024/10/19 10:27
 */
public class AgvApiConstant {
 
    /**
     * 国自AGV ip地址及端口
     */
    public static final String AGV_IP_PORT = "http://192.168.15.206:38188";
 
    /**
     * 出库呼叫AGV接货
     */
    public static final String OUTBOUND_CALL_AGV_PATH = "/wms/api/addOutBoundType";
 
}