#
whycq
2023-08-01 320ed3f4782f9662f79ecfe14d2cf3f34dd288c5
src/main/java/zy/cloud/wms/manager/entity/Item.java
@@ -149,6 +149,8 @@
    private String type;
    @TableField(value = "real_start_time", strategy = FieldStrategy.IGNORED)
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date realStartTime;
@@ -399,6 +401,17 @@
//            null,    // 修改时间
//            null    // 备注
//    );
//    public String getProgressRate$(){
//        ProjectStatusService bean = SpringUtils.getBean(ProjectStatusService.class);
//        ProjectStatus id = bean.selectOne(new EntityWrapper<ProjectStatus>()
//                .eq("id", this.progressRate));
//        if (!Cools.isEmpty(id)) {
//            return id.getStatusName();
//        }
//
//        return "";
//    }
    public String getProjectStatus$(){
        ProjectStatusService bean = SpringUtils.getBean(ProjectStatusService.class);
@@ -678,6 +691,15 @@
        return null;
    }
    public String getType$$(){
        if (this.type.equals("10")) {
            return "集成项目";
        }else {
            return "常规项目";
        }
    }
    public void setUpdateBy(Long updateBy) {
        this.updateBy = updateBy;
    }