自动化立体仓库 - WMS系统
chen.llin
9 天以前 817683f9935a6343e954ffe7fd0eeae46e55d29c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.zy.common.constant;
 
/**
 * @author pang.jiabao
 * @description 调用外部API地址常量
 * @createDate 2025/11/13 13:10
 */
public class ApiInterfaceConstant {
 
    /* **************************************ERP接口对接 start*******************************************************/
 
    /**
     * ERP对接基础地址
     */
//    public static final String URI = "http://192.168.99.130:80";
    // 测试地址
    public static final String ERP_IP = "http://127.0.0.1:8080/wms/open/asrs";
 
    /**
     * 入库完成上报路径
     */
    public static final String PAKIN_PATH = "/inOrderFinishReport";
 
    /**
     * 出库完成上报路径
     */
    public static final String PAKOUT_PATH = "/outOrderFinishReport";
 
    /* ***************************************AGV接口对接 start*******************************************************/
 
    /**
     * AGV对接基础地址
     */
//    public static final String AGV_IP = "http://192.168.99.130:80";
    // 测试地址
    public static final String AGV_IP = "http://127.0.0.1:8080/yhfzwms/open/asrs";
 
    /**
     * 仙工M4 - 创建任务(货物转运、实托入库,实托出库)
     */
    public static final String AGV_CREATE_TASK_PATH = "/api/agv/inbond";
 
    /**
     * 仙工M4 - 取消任务
     */
    public static final String AGV_CANCEL_TASK_PATH = "/api/agv/cancelTransport";
 
}