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 IN_DISPATCH_RESULT = "getInDispatchResult";
|
//备货指示派工单反馈
|
public static final String OUT_DISPATCH_RESULT = "getOutDispatchResult";
|
//备货订单反馈
|
public static final String OUT_DETAILS_RESULT = "getOutDetailsResult";
|
|
|
/**
|
* token通过header传递的名称
|
*/
|
public static final String TOKEN_HEADER_NAME = "Authorization";
|
|
/**
|
* token通过参数传递的名称
|
*/
|
public static final String TOKEN_PARAM_NAME = "access_token";
|
|
}
|