mrzhssss
2022-01-14 3528bc13c81aa4a37e6fc411bcd0800a1871acff
src/main/java/zy/cloud/wms/manager/entity/Item.java
@@ -392,6 +392,21 @@
        return null;
    }
    public String getRealStartTime$(){
        if (!Cools.isEmpty(this.realStartTime)) {
            return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realStartTime);
        }else {
            return "";
        }
    }
    public String getRealEndTime$(){
        if (!Cools.isEmpty(this.realEndTime)) {
            return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realEndTime);
        }else {
            return "";
        }
    }
    public String getType$(){
        ProjectTypeService bean = SpringUtils.getBean(ProjectTypeService.class);
        ProjectType id = bean.selectOne(new EntityWrapper<ProjectType>()