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.
17 lines
488 B
Java
17 lines
488 B
Java
package com.glxp.api.constant;
|
|
|
|
/**
|
|
* 内部码处理状态
|
|
*/
|
|
public class IncodeStatus {
|
|
|
|
public static final Integer PROCESS = 0; //处理中
|
|
public static final Integer FINISH = 1; //已完成
|
|
public static final Integer ERROR = 2; //异常
|
|
|
|
public static final Integer FROM_UDIINFO = 0; //产品信息
|
|
public static final Integer FROM_INVINFO = 1; //库存产品信息
|
|
public static final Integer FROM_THRSYS = 2; //第三方提交
|
|
|
|
}
|