1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zy.common.constant;
|
| /**
| * @author pang.jiabao
| * @description 对外Api请求地址常量类
| * @createDate 2024/7/10 10:55
| */
| public class OpenApiAddressConstant {
| /**
| * AGV系统ip地址
| */
| public static final String AGV_IP = "http://192.168.204.44:8010";
|
| /**
| * 出库呼叫agv
| */
| public static final String CALL_AGV_URL = "/api/TaskCreat/AGVOutboundTask";
| }
|
|