| 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.11.11:38188"; |  |   |  |     /** |  |      * 出库呼叫AGV接货 |  |      */ |  |     public static final String OUTBOUND_CALL_AGV_PATH = "/wms/api/addOutBoundType"; |  |   |  | } | 
 |