mrzhssss
2022-01-14 3528bc13c81aa4a37e6fc411bcd0800a1871acff
src/main/java/zy/cloud/wms/manager/entity/ProjectPlan.java
@@ -255,7 +255,7 @@
        if (Cools.isEmpty(this.startTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.startTime);
        return new SimpleDateFormat("yyyy-MM-dd").format(this.startTime);
    }
    public void setStartTime(Date startTime) {
@@ -270,7 +270,7 @@
        if (Cools.isEmpty(this.realStartTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realStartTime);
        return new SimpleDateFormat("yyyy-MM-dd").format(this.realStartTime);
    }
    public void setRealStartTime(Date realStartTime) {
@@ -285,7 +285,7 @@
        if (Cools.isEmpty(this.endTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.endTime);
        return new SimpleDateFormat("yyyy-MM-dd").format(this.endTime);
    }
    public void setEndTime(Date endTime) {
@@ -300,7 +300,7 @@
        if (Cools.isEmpty(this.realEndTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realEndTime);
        return new SimpleDateFormat("yyyy-MM-dd").format(this.realEndTime);
    }
    public void setRealEndTime(Date realEndTime) {