自动化立体仓库 - WMS系统
pang.jiabao
2024-08-15 83425ecab7ea13a6f5cbe877b1313f3e7a42b8b1
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
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";
 
    // 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";
 
}