自动化立体仓库 - WMS系统
#
lsh
2024-12-18 e38cf917b19b91bf6c8f07c70fb7bb391e1e80c0
src/main/java/com/zy/asrs/entity/LocDetl.java
@@ -165,6 +165,30 @@
    @ApiModelProperty(value= "拥有者 1: 杰克   ")
    private Integer owner;
    /**
     * 备用1
     */
    @ApiModelProperty(value= "备用1")
    private String standby1;
    /**
     * 备用2
     */
    @ApiModelProperty(value= "备用2")
    private String standby2;
    /**
     * 备用3
     */
    @ApiModelProperty(value= "备用3")
    private String standby3;
    /**
     * 是否冻结
     */
    @ApiModelProperty(value= "是否冻结,0.未冻结,1.已冻结")
    private Integer frozen;
    public String getLocNo$(){
        LocMastService service = SpringUtils.getBean(LocMastService.class);
        LocMast locMast = service.selectById(this.locNo);
@@ -277,4 +301,16 @@
        Synchro.Copy(source, this);
    }
    public String getFrozen$() {
        if (null == this.frozen){ return null; }
        switch (this.frozen){
            case 0:
                return "未冻结";
            case 1:
                return "已冻结";
            default:
                return null;
        }
    }
}