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.
38 lines
1.4 KiB
Java
38 lines
1.4 KiB
Java
2 years ago
|
package com.glxp.api.constant;
|
||
|
|
||
|
/**
|
||
|
* 基础信息导入导出处理状态
|
||
|
*/
|
||
|
public class BasicProcessStatus {
|
||
|
|
||
|
public static final int UDIINFO_IMPORT_UNPROCESS = 0;
|
||
|
public static final int UDIINFO_IMPORT_PROCESS = 1;
|
||
|
public static final int UDIINFO_IMPORT_FAIL = 2;
|
||
|
public static final int UDIINFO_IMPORT_SUCCESS = 3;
|
||
|
|
||
|
public static final int UDIINFO_IMPORT_CODE_UNPROCESS = 0;
|
||
|
public static final int UDIINFO_IMPORT_CODE_SUCESS = 2;
|
||
|
public static final int UDIINFO_IMPORT_CODE_FAIL = 1;
|
||
|
|
||
|
|
||
|
public static final int EXPORT_EXCEL = 1;
|
||
|
public static final int EXPORT_SMP = 2;
|
||
|
public static final int EXPORT_JSON = 3;
|
||
|
|
||
|
public static final int BASIC_UDI = 1; //耗材字典
|
||
|
public static final int BASIC_INV = 2; //仓库字典
|
||
|
public static final int BASIC_CORP = 3; //往来单位
|
||
|
public static final int BASIC_THIRD_PRODUCTS = 4; //往来单位
|
||
|
public static final int BASIC_THIRD_CORP = 5; //往来单位
|
||
|
public static final int BASIC_THIRD_ORDER = 6; //往来单位
|
||
|
public static final int NEW_ALL_DATA = 7; //所有最新数据
|
||
|
public static final int NEW_ALL_BUS = 8;
|
||
|
public static final int NEW_ALL_ORDER = 9;
|
||
|
public static final int NEW_ALL_DI = 10;
|
||
|
|
||
|
public static final int SCHEDULE_NORMAL = 1; //常规任务
|
||
|
public static final int SCHEDULE_TRANSFER = 2; //需要传递任务
|
||
|
|
||
|
|
||
|
}
|