自动化立体仓库 - WMS系统
lsh
昨天 7e1420649451d5dc22ac49b3b31ba59df1edf19e
src/main/java/com/zy/asrs/entity/BasBoxType.java
@@ -36,6 +36,13 @@
    @TableField("box_type")
    private String boxType;
    /**
     * 堆垛机
     */
    @ApiModelProperty(value= "箱型编号")
    @TableField("arm_type")
    private int armType;
    public BasBoxType() {}
    public BasBoxType(String boxSpecs,String boxType) {
@@ -43,7 +50,19 @@
        this.boxType = boxType;
    }
//    BasBoxType basBoxType = new BasBoxType(
    public String getArmType$() {
        if (Cools.isEmpty(armType))  return "请选择结果";
        switch (armType) {
            case 1:
                return "允许";
            case 999:
                return "不允许";
            default:
                return "请选择结果";
        }
    }
    //    BasBoxType basBoxType = new BasBoxType(
//            null,    // 任务号[非空]
//            null    // 堆垛机
//    );