自动化立体仓库 - WMS系统
#
pang.jiabao
2024-09-05 fa5632638d1f6f7e28234ca4b0982b03f58b98f3
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
package com.zy.common.constant;
 
/**
 * Created by vincent on 2022/4/21
 */
public class MesConstant {
 
    public static final String URL = "http://192.168.99.130:80";
 
    public static final String PACK_DOWN_URL = "mes/api/zy/v1/packDown/sendList";
 
    public static final String PAKIN_URL = "mes/api/zy/v1/warehouse/sendList";
 
    public static final String PAKOUT_URL = "wmsFinprd/api/zy/v1/packOut/sendList";
 
    // MES接口IP地址
    public static final String MES_IP_PORT = "http://192.168.14.249:8008";
 
    // 给MES推送一楼反修为待判
    public static final String MES_DP_URL = "/api/Task/InventoryTask";
 
    // 给MES推送出库单结果
    public static final String MES_CKSB_URL = "/api/Task/InventoryTask";
 
    // GWCS接口IP地址
    public static final String GWCS_IP_PORT = "http://192.168.14.249:8008";
 
    // GWMS接口IP地址
    public static final String GWMS_IP_PORT = "http://192.168.14.249:8008";
 
    // ZWMS下发入库(分配库位)
    public static final String GWCS_FPKW_URL = "/api/Task/InventoryTask";
 
    // 下发出库码头到出库口命令
    public static final String GWCS_DCKK_URL = "/api/Task/InventoryTask";
 
    // 获取箱号对应包装组号
    public static final String GWMS_GET_GROUP_NO_URL = "/api/Task/InventoryTask";
 
}