自动化立体仓库 - WMS系统
pang.jiabao
2025-11-13 d3d155627aac7ed9529eabc3de4a2dab4bda504e
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
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/yhfzwms/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";
 
    /**
     * 入库呼叫AGV取货
     */
    public static final String AGV_CALL_IN_PATH = "mes/api/zy/v1/packDown/sendList";
 
}