自动化立体仓库 - WMS系统
#
lsh
2024-12-18 e38cf917b19b91bf6c8f07c70fb7bb391e1e80c0
src/main/java/com/zy/asrs/entity/LocDetl.java
@@ -103,7 +103,7 @@
    private Double weight;
    @ApiModelProperty(value= "长度")
    private Double length;
    private Double man_length;
    @ApiModelProperty(value= "体积")
    private Double volume;
@@ -164,6 +164,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);
@@ -265,6 +289,9 @@
    public long getStoreDate(){
        long timeNow = new Date().getTime();
        if (this.appeTime == null){
            return 0;
        }
        long timeCreate = this.appeTime.getTime();
        return (timeNow - timeCreate) /24/60/60/1000;
@@ -274,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;
        }
    }
}