自动化立体仓库 - WMS系统
pang.jiabao
2025-04-17 391dd89a6583e0f1eceaf1297fd852e3da32bf68
src/main/java/com/zy/asrs/entity/Pla.java
@@ -69,6 +69,21 @@
    @ExcelProperty(value = "包装号")
    private Integer packageNo;
    //牌号
    @ExcelProperty(value = "关联牌号")
    @TableField("new_brand")
    private String newBrand;
    //批号
    @TableField("new_batch")
    @ExcelProperty(value = "关联批号")
    private String newBatch;
    //包装号
    @TableField("new_package_no")
    @ExcelProperty(value = "关联包装号")
    private Integer newPackageNo;
    //包装号
    @ExcelProperty(value = "生产日期")
    @TableField("pro_date")
@@ -278,6 +293,9 @@
    }
    public String getPackageNo$(){
        if(Cools.isEmpty(packageNo)){
            return null;
        }
        if(packageNo < 10){
            return "00" + packageNo;
        }else if(packageNo < 100){
@@ -292,13 +310,13 @@
        if (Cools.isEmpty(this.pakinTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH").format(this.pakinTime);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.pakinTime);
    }
    public String getStockFreezeDate$() {
        if (Cools.isEmpty(this.stockFreezeDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.stockFreezeDate);
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.stockFreezeDate);
    }
}