自动化立体仓库 - WMS系统
zyx
2024-04-07 012f80529db9aa5065f51bde3fd65ff1ffe9eb61
src/main/java/com/zy/asrs/entity/Pla.java
@@ -295,13 +295,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);
    }
}