| | |
| | | import java.io.Serializable; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @TableName("man_item") |
| | | public class Item implements Serializable { |
| | |
| | | |
| | | @TableField("type") |
| | | private String type; |
| | | |
| | | |
| | | |
| | | |
| | | @TableField(value = "real_start_time", strategy = FieldStrategy.IGNORED) |
| | |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private Date realLADate; |
| | | |
| | | |
| | | /** |
| | | * 预计车辆数量 |
| | | */ |
| | | @ApiModelProperty(value= "预计车辆数量") |
| | | @TableField("planCarnumber") |
| | | private String planCarnumber; |
| | | |
| | | /** |
| | | * 超出金额 |
| | | */ |
| | | @ApiModelProperty(value= "超出金额") |
| | | @TableField("Excess_amount") |
| | | private Double excessAmount; |
| | | |
| | | /** |
| | | * 超出天数 |
| | | */ |
| | | @ApiModelProperty(value= "超出天数") |
| | | @TableField("Excess_time") |
| | | private Integer excessTime; |
| | | |
| | | public Item() {} |
| | | |
| | | // Item item = new Item( |
| | |
| | | // 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); |
| | |
| | | } |
| | | } |
| | | |
| | | public String getInstallMk$(){ |
| | | if (null == this.installMk){ return null; } |
| | | switch (this.installMk){ |
| | | case 0: |
| | | return "否"; |
| | | case 1: |
| | | return "是"; |
| | | |
| | | default: |
| | | return String.valueOf(this.installMk); |
| | | } |
| | | } |
| | | |
| | | public String getDeliveryMk$(){ |
| | | if (null == this.deliveryMk){ return null; } |
| | | switch (this.deliveryMk){ |
| | | case 0: |
| | | return "否"; |
| | | case 1: |
| | | return "是"; |
| | | |
| | | default: |
| | | return String.valueOf(this.deliveryMk); |
| | | } |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | |
| | | return null; |
| | | } |
| | | |
| | | public String getType$$(){ |
| | | if (this.type.equals("10")) { |
| | | return "集成项目"; |
| | | }else { |
| | | return "常规项目"; |
| | | } |
| | | |
| | | } |
| | | |
| | | public void setUpdateBy(Long updateBy) { |
| | | this.updateBy = updateBy; |
| | | } |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.predeDate); |
| | | } |
| | | |
| | | public String getPredeDate0$(){ |
| | | if (Cools.isEmpty(this.predeDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.predeDate); |
| | | } |
| | | |
| | | public String getPreinDate$(){ |
| | | if (Cools.isEmpty(this.preinDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.preinDate); |
| | | } |
| | | |
| | | public String getPreinDate0$(){ |
| | | if (Cools.isEmpty(this.preinDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.preinDate); |
| | | } |
| | | |
| | | public String getPlandeDate$(){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.plandeDate); |
| | | } |
| | | |
| | | public String getPlandeDate0$(){ |
| | | if (Cools.isEmpty(this.plandeDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.plandeDate); |
| | | } |
| | | |
| | | public String getRealdeDate$(){ |
| | | if (Cools.isEmpty(this.realdeDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realdeDate); |
| | | } |
| | | |
| | | public String getRealdeDate0$(){ |
| | | if (Cools.isEmpty(this.realdeDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.realdeDate); |
| | | } |
| | | |
| | | public String getPlaninDate$(){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planinDate); |
| | | } |
| | | |
| | | public String getPlaninDate0$(){ |
| | | if (Cools.isEmpty(this.planinDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.planinDate); |
| | | } |
| | | |
| | | public String getRealinDate$(){ |
| | | if (Cools.isEmpty(this.realinDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realinDate); |
| | | } |
| | | |
| | | public String getRealinDate0$(){ |
| | | if (Cools.isEmpty(this.realinDate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.realinDate); |
| | | } |
| | | |
| | | public String getPlanFADate$(){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planFADate); |
| | | } |
| | | |
| | | public String getPlanFADate0$(){ |
| | | if (Cools.isEmpty(this.planFADate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.planFADate); |
| | | } |
| | | |
| | | public String getRealFADate$(){ |
| | | if (Cools.isEmpty(this.realFADate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realFADate); |
| | | } |
| | | |
| | | public String getRealFADate0$(){ |
| | | if (Cools.isEmpty(this.realFADate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.realFADate); |
| | | } |
| | | |
| | | public String getPlanLADate$(){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.planLADate); |
| | | } |
| | | |
| | | public String getPlanLADate0$(){ |
| | | if (Cools.isEmpty(this.planLADate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.planLADate); |
| | | } |
| | | |
| | | public String getRealLADate$(){ |
| | | if (Cools.isEmpty(this.realLADate)){ |
| | | return ""; |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.realLADate); |
| | | } |
| | | |
| | | public String getRealLADate0$(){ |
| | | if (Cools.isEmpty(this.realLADate)){ |
| | | return ""; |
| | | } |
| | | return new SimpleDateFormat("yyyy-MM-dd").format(this.realLADate); |
| | | } |
| | | |
| | | |
| | | } |