自动化立体仓库 - WMS系统
#
lsh
2024-12-17 5919f1e14ea00a57c6022a48ecb089e82c9f105c
src/main/java/com/zy/asrs/entity/param/LocMastInitParam.java
@@ -2,10 +2,12 @@
import com.core.common.BaseRes;
import com.core.exception.CoolException;
import lombok.Data;
/**
 * Created by vincent on 2020/6/13
 */
@Data
public class LocMastInitParam {
    // 起始排
@@ -29,8 +31,22 @@
    // 堆垛机数量
    private Integer crnAmount;
    // 库位类型: 1:低库位  2:高库位
    private Integer whsType;
    // 高低类型: 1:低库位  2:高库位
    private Short locType1;
    // 宽窄类型: 1:窄库位  2:宽库位
    private Short locType2;
    // 轻重类型: 1:轻库位  2:重库位
    private Short locType3;
    private Integer enable;
    private Integer staCrn;
    private Integer endCrn;
    private String identifying;
    public Integer getStartRow() {
        if (null == startRow) {
@@ -109,11 +125,28 @@
        this.crnAmount = crnAmount;
    }
    public Integer getWhsType() {
        return whsType;
    public Short getLocType1() {
        return locType1;
    }
    public void setWhsType(Integer whsType) {
        this.whsType = whsType;
    public void setLocType1(Short locType1) {
        this.locType1 = locType1;
    }
    public Short getLocType2() {
        return locType2;
    }
    public void setLocType2(Short locType2) {
        this.locType2 = locType2;
    }
    public Short getLocType3() {
        return locType3;
    }
    public void setLocType3(Short locType3) {
        this.locType3 = locType3;
    }
}