You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
867 B
Java
44 lines
867 B
Java
3 years ago
|
package com.glxp.api.constant;
|
||
|
|
||
|
/**
|
||
|
* 第三方系统配置参数实体
|
||
|
*/
|
||
|
public interface ThirdSysConstant {
|
||
|
|
||
|
/**
|
||
|
* 仓库货位码查询
|
||
|
*/
|
||
|
public static final String WAREHOUSE_QUERY_URL = "warehouseQueryUrl";
|
||
|
|
||
|
/**
|
||
|
* 业务单据提交
|
||
|
*/
|
||
|
public static final String ORDER_SUBMIT_URL = "orderSubmitUrl";
|
||
|
|
||
|
/**
|
||
|
* 业务单据查询
|
||
|
*/
|
||
|
public static final String ORDER_QUERY_URL = "orderQueryUrl";
|
||
|
|
||
|
/**
|
||
|
* 单据类型查询
|
||
|
*/
|
||
|
public static final String BUS_TYPE_QUERY_URL = "busTypeQueryUrl";
|
||
|
|
||
|
/**
|
||
|
* 仓库/科室查询
|
||
|
*/
|
||
|
public static final String invPiUrl = "invPiUrl";
|
||
|
|
||
|
/**
|
||
|
* 往来单位查询
|
||
|
*/
|
||
|
public static final String CORP_URL = "corpUrl";
|
||
|
|
||
|
/**
|
||
|
* 产品信息查询
|
||
|
*/
|
||
|
public static final String PI_QUERY_URL = "piQueryUrl";
|
||
|
|
||
|
}
|