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";
|
|
}
|