| | |
| | | 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 { |
| | |
| | | @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 // 备注 |
| | | // ); |
| | | |
| | | // 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); |
| | | ProjectStatus id = bean.selectOne(new EntityWrapper<ProjectStatus>().eq("id", this.projectStatus)); |