自动化立体仓库 - WMS系统
pang.jiabao
2024-09-12 265881414a15ac8216abb860880bd6872872c42a
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
49
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_CC_IP_PORT = "http://172.22.152.3:8156";
 
    // 给仓储MES推送一楼反修为待判
    public static final String MES_CC_DP_URL = "/planCutRolling/v1/updateBatchHandleType";
 
    // 给仓储MES推送盘点出库结果
    public static final String MES_CC_SB_URL = "/planCutRolling/v1/updateBatchHandleType";
 
    // MES质量IP地址
    public static final String MES_ZL_IP_PORT = "http://172.22.152.3:8157";
 
    // 给质量MES推送 成品/反修品 出库结果
    public static final String MES_ZL_SB_URL = "/qualityOutboundOrder/v1/confirmReceipt";
 
    // 给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";
 
}