CodeConstans.java
772 Bytes
package com.huaheng.common.constant;
/**
 * @ClassName CodeConstans
 * @Description 代码常量
 * @Author ricard
 * @Date 2019/12/139:36
 */
public class CodeConstans {
    //子任务中入库类型
    public static final String RECEIPTTYPE = "r";
    //子任务中出库类型
    public static final String SHIPMENTTYPE ="s";
    //整盘入库
    public static final short FULLDISKSTORAGE = 100;
    //补充入库
    public static final short REPLENISHMENT = 200;
    //整盘出库
    public static final short OUTOFSTOCK = 300;
    //分拣出库
    public static final short SORTOUTWAREHOUSE = 400;
    //内部库位
    public static final Integer INTERNELLOCATION = 3;
    //外部库位
    public static final Integer EXTERNALLOCATION = 2;
}