|
@@ -13,6 +13,7 @@ import org.jetbrains.annotations.Contract;
|
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
import javax.validation.constraints.NotBlank;
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -37,6 +38,9 @@ public class ZEngineeringIndustryVo extends BaseEntity {
|
|
*/
|
|
*/
|
|
private String remark;
|
|
private String remark;
|
|
|
|
|
|
|
|
+ @ExcelProperty(value = "序号")
|
|
|
|
+ private int rowNumber;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 工程名称
|
|
* 工程名称
|
|
*/
|
|
*/
|
|
@@ -46,13 +50,13 @@ public class ZEngineeringIndustryVo extends BaseEntity {
|
|
/**
|
|
/**
|
|
* 工程分类
|
|
* 工程分类
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "工程分类")
|
|
|
|
|
|
+// @ExcelProperty(value = "工程分类")
|
|
private String enginClassification;
|
|
private String enginClassification;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 工程类型
|
|
* 工程类型
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "工程类型")
|
|
|
|
|
|
+// @ExcelProperty(value = "工程类型")
|
|
private String enginType;
|
|
private String enginType;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -64,49 +68,49 @@ public class ZEngineeringIndustryVo extends BaseEntity {
|
|
/**
|
|
/**
|
|
* 项目负责人
|
|
* 项目负责人
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "项目负责人")
|
|
|
|
|
|
+// @ExcelProperty(value = "项目负责人")
|
|
private String projectHead;
|
|
private String projectHead;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 现场负责人
|
|
* 现场负责人
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "现场负责人")
|
|
|
|
|
|
+// @ExcelProperty(value = "现场负责人")
|
|
private String sceneHead;
|
|
private String sceneHead;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 设计单位
|
|
* 设计单位
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "设计单位")
|
|
|
|
|
|
+// @ExcelProperty(value = "设计单位")
|
|
private String designUnit;
|
|
private String designUnit;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 设计负责人
|
|
* 设计负责人
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "设计负责人")
|
|
|
|
|
|
+// @ExcelProperty(value = "设计负责人")
|
|
private String designHead;
|
|
private String designHead;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 设计联系电话
|
|
* 设计联系电话
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "设计联系电话")
|
|
|
|
|
|
+// @ExcelProperty(value = "设计联系电话")
|
|
private String designPhone;
|
|
private String designPhone;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 监理单位
|
|
* 监理单位
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "监理单位")
|
|
|
|
|
|
+// @ExcelProperty(value = "监理单位")
|
|
private String supervisionUnit;
|
|
private String supervisionUnit;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 监理负责人
|
|
* 监理负责人
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "监理负责人")
|
|
|
|
|
|
+// @ExcelProperty(value = "监理负责人")
|
|
private String supervisionHead;
|
|
private String supervisionHead;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 监理联系电话
|
|
* 监理联系电话
|
|
*/
|
|
*/
|
|
- @ExcelProperty(value = "监理联系电话")
|
|
|
|
|
|
+// @ExcelProperty(value = "监理联系电话")
|
|
private String supervisionPhone;
|
|
private String supervisionPhone;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -143,4 +147,17 @@ public class ZEngineeringIndustryVo extends BaseEntity {
|
|
private Double gcPreset;
|
|
private Double gcPreset;
|
|
private Double pesj=0.0;
|
|
private Double pesj=0.0;
|
|
private Double gsj=0.0;
|
|
private Double gsj=0.0;
|
|
|
|
+ @ExcelProperty(value = "派发时间")
|
|
|
|
+ private String createTimeStr; // 创建时间 派发时间
|
|
|
|
+ @ExcelProperty(value = "进场时间")
|
|
|
|
+ private String startTimeStr; // 开工时间 进场时间
|
|
|
|
+ private Date startTime;
|
|
|
|
+ @ExcelProperty(value = "竣工时间")
|
|
|
|
+ private String beCompletedTimeStr; // 竣工时间
|
|
|
|
+ private Date beCompletedTime; // 竣工时间
|
|
|
|
+ @ExcelProperty(value = "通气时间")
|
|
|
|
+ private String airTimeStr; // 通气时间
|
|
|
|
+ // private Date airTime; // 通气时间
|
|
|
|
+ @ExcelProperty(value = "完工百分比")
|
|
|
|
+ private String donePercent; // 完工百分比
|
|
}
|
|
}
|