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.
36 lines
1007 B
Java
36 lines
1007 B
Java
3 years ago
|
package com.glxp.udi.admin.constant;
|
||
|
|
||
|
public class ConstantStatus {
|
||
|
|
||
|
//订单状态
|
||
|
public static final Integer ORDER_STATUS_WAIT = 1; //等待处理
|
||
|
|
||
|
public static final Integer ORDER_STATUS_PROCESS = 2; //正在处理
|
||
|
|
||
|
public static final Integer ORDER_STATUS_SUCCESS = 3; //已完成
|
||
|
|
||
|
public static final Integer ORDER_STATUS_FAIL = 9; //异常
|
||
|
|
||
|
public static final int RECEIVE_UN = 0; //未验收
|
||
|
|
||
|
public static final int RECEIVE_ED = 1; //已验收
|
||
|
|
||
|
public static final int RECEIVE_NOT = 2;//不需要验收
|
||
|
|
||
|
public static final Integer ORDER_STATUS_ADDITIONAL = 5; //补录单据
|
||
|
|
||
|
public static final Integer PRODUCT_TYPE_THIRD = 1;
|
||
|
|
||
|
//往来单位类型
|
||
|
public static final int CORP_SICK = 1; //病人
|
||
|
|
||
|
//往来信息类型-单据
|
||
|
public static final int CORP_TYPE_INPUT = 2; //客户
|
||
|
|
||
|
|
||
|
public static final int CORP_SICK_SICK = 1;
|
||
|
|
||
|
public static final int DITYPE_SYDY = 2; //使用单元标识
|
||
|
|
||
|
}
|