自动化立体仓库 - WMS系统
pang.jiabao
2025-11-10 11a590bda370ddad398b2c3ae68a218ee8d5a5d2
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 {
 
    // ERP对接基础地址
//    public static final String URI = "http://192.168.99.130:80";
    public static final String URI = "http://127.0.0.1:8080/yhfzwms/open/asrs";
 
    public static final String PACK_DOWN_URL = "mes/api/zy/v1/packDown/sendList";
 
    // 入库完成上报路径
    public static final String PAKIN_PATH = "/inOrderFinishReport";
 
    // 出库完成上报路径
    public static final String PAKOUT_PATH = "/outOrderFinishReport";
 
 
    /**
     * token通过header传递的名称
     */
    public static final String TOKEN_HEADER_NAME = "Authorization";
 
    /**
     * token通过参数传递的名称
     */
    public static final String TOKEN_PARAM_NAME = "access_token";
 
}