自动化立体仓库 - WMS系统
skyouc
1 天以前 053bd1cc2693589840bfad523c954960db654f54
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;
 
/**
 * Created by vincent on 2022/4/21
 */
public class MesConstant {
 
    //小系统接口地址
//    public static final String URL = "http://webservice.kopen.com.cn:1482/kc-api/api/wms/ ";
    public static final String URL = "http://10.143.23.26:1482/kc-api/api/wms/ ";
 
    //WCS系统接口地址
//    public static final String WCS_URL = "http://192.168.238.32:9090/wcs";
 
    public static final String WCS_URL = "http://192.168.238.241:9090/wcs";
 
    //上架派工单反馈
    public static final String IN_DISPATCH_RESULT = "getInDispatchResult";
    //备货指示派工单反馈
    public static final String OUT_DISPATCH_RESULT = "getOutDispatchResult";
    //备货订单反馈
    public static final String OUT_DETAILS_RESULT = "getOutDetailsResult";
 
    /**移库申请链接任务**/
    public static final String MOVE_LOC_TASK = "/openapi/createLocMoveTask";
 
    /****/
    public static final String LOC_F_MOV = "/openapi/change/loc";
    /***申请入库任务*/
    public static final String PUB_TASK_IN = "/openapi/createInTask";
 
    /***申请出库任务*/
    public static final String PUB_TASK_OUT = "/openapi/createOutTask";
 
    /***同步庫位信息*/
    public static final String SYN_LOCS = "/openapi/getAllLocInformation";
 
    /**
     * token通过header传递的名称
     */
    public static final String TOKEN_HEADER_NAME = "Authorization";
 
    /**
     * token通过参数传递的名称
     */
    public static final String TOKEN_PARAM_NAME = "access_token";
 
}