1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.zy.common.constant;
|
| /**
| * @author pang.jiabao
| * @description AGV相关对接地址
| * @createDate 2024/10/19 10:27
| */
| public class AgvApiConstant {
|
| public static final String AGV_IP_PORT = "http://192.168.99.130:80";
|
| public static final String OUTBOUND_CALL_AGV_PATH = "/wms/api/addOutBoundType";
|
| }
|
|