自动化立体仓库 - WMS系统
#
lsh
2024-12-18 e38cf917b19b91bf6c8f07c70fb7bb391e1e80c0
src/main/java/com/zy/asrs/entity/LocDetl.java
@@ -169,19 +169,25 @@
     * 备用1
     */
    @ApiModelProperty(value= "备用1")
    private Integer standby1;
    private String standby1;
    /**
     * 备用2
     */
    @ApiModelProperty(value= "备用2")
    private Integer standby2;
    private String standby2;
    /**
     * 备用3
     */
    @ApiModelProperty(value= "备用3")
    private Integer standby3;
    private String standby3;
    /**
     * 是否冻结
     */
    @ApiModelProperty(value= "是否冻结,0.未冻结,1.已冻结")
    private Integer frozen;
    public String getLocNo$(){
        LocMastService service = SpringUtils.getBean(LocMastService.class);
@@ -295,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;
        }
    }
}