自动化立体仓库 - WMS系统
whycq
2023-08-26 82bcd0328dddbaad65933e2fada22bc68e82b3d5
src/main/java/com/zy/asrs/entity/WrkDetl.java
@@ -59,9 +59,9 @@
    private String maktx;
    /**
     * 批号
     * 序列码
     */
    @ApiModelProperty(value= "批号")
    @ApiModelProperty(value= "序列码")
    private String batch;
    /**
@@ -268,6 +268,18 @@
     */
    @ApiModelProperty(value= "备注")
    private String memo;
    /**
     * 是否冻结
     */
    @ApiModelProperty(value= "是否冻结")
    private Integer frozen;
    /**
     * 上架区域{1:单品区,2:高频混放区,3:低频混放区}
     */
    @ApiModelProperty(value= "上架区域")
    @TableField("mat_type")
    private Integer matType;
    public String getIoTime$(){
        if (Cools.isEmpty(this.ioTime)){
@@ -362,4 +374,20 @@
        Synchro.Copy(source, this);
    }
    public String getMatType$() {
        if (this.matType == null) {
            return "";
        }
        switch (this.matType) {
            case 1:
                return "单品区";
            case 2:
                return "高频混放区";
            case 3:
                return "低频混放区";
            default:
                return "";
        }
    }
}