|
@@ -0,0 +1,156 @@
|
|
|
+package cn.iocoder.yudao.module.pms.controller.admin.iotrydailyreport.vo;
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+@Schema(description = "管理后台 - 瑞鹰日报 Response VO")
|
|
|
+@Data
|
|
|
+@ExcelIgnoreUnannotated
|
|
|
+public class IotRyDailyReportRespVO {
|
|
|
+
|
|
|
+ @Schema(description = "主键id", requiredMode = Schema.RequiredMode.REQUIRED, example = "25152")
|
|
|
+ @ExcelProperty("主键id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Schema(description = "施工队伍id", example = "29285")
|
|
|
+ @ExcelProperty("施工队伍id")
|
|
|
+ private Long deptId;
|
|
|
+
|
|
|
+ @Schema(description = "项目id", example = "23929")
|
|
|
+ @ExcelProperty("项目id")
|
|
|
+ private Long projectId;
|
|
|
+
|
|
|
+ @Schema(description = "任务id", example = "1515")
|
|
|
+ @ExcelProperty("任务id")
|
|
|
+ private Long taskId;
|
|
|
+
|
|
|
+ @Schema(description = "项目类别(钻井 修井 注氮 酸化压裂... )")
|
|
|
+ @ExcelProperty("项目类别(钻井 修井 注氮 酸化压裂... )")
|
|
|
+ private String projectClassification;
|
|
|
+
|
|
|
+ @Schema(description = "搬迁安装天数(D)")
|
|
|
+ @ExcelProperty("搬迁安装天数(D)")
|
|
|
+ private BigDecimal relocationDays;
|
|
|
+
|
|
|
+ @Schema(description = "上井次完井时间")
|
|
|
+ @ExcelProperty("上井次完井时间")
|
|
|
+ private LocalDateTime lastestWellDoneTime;
|
|
|
+
|
|
|
+ @Schema(description = "当前井深(m)")
|
|
|
+ @ExcelProperty("当前井深(m)")
|
|
|
+ private BigDecimal currentDepth;
|
|
|
+
|
|
|
+ @Schema(description = "日进尺(m)")
|
|
|
+ @ExcelProperty("日进尺(m)")
|
|
|
+ private BigDecimal dailyFootage;
|
|
|
+
|
|
|
+ @Schema(description = "月进尺(m)")
|
|
|
+ @ExcelProperty("月进尺(m)")
|
|
|
+ private BigDecimal monthlyFootage;
|
|
|
+
|
|
|
+ @Schema(description = "年累计进尺(m)")
|
|
|
+ @ExcelProperty("年累计进尺(m)")
|
|
|
+ private BigDecimal annualFootage;
|
|
|
+
|
|
|
+ @Schema(description = "当日用电量(kWh)")
|
|
|
+ @ExcelProperty("当日用电量(kWh)")
|
|
|
+ private BigDecimal dailyPowerUsage;
|
|
|
+
|
|
|
+ @Schema(description = "当月用电量(kWh)")
|
|
|
+ @ExcelProperty("当月用电量(kWh)")
|
|
|
+ private BigDecimal monthlyPowerUsage;
|
|
|
+
|
|
|
+ @Schema(description = "当日油耗(吨)")
|
|
|
+ @ExcelProperty("当日油耗(吨)")
|
|
|
+ private BigDecimal dailyFuel;
|
|
|
+
|
|
|
+ @Schema(description = "当月油耗(吨)")
|
|
|
+ @ExcelProperty("当月油耗(吨)")
|
|
|
+ private BigDecimal monthlyFuel;
|
|
|
+
|
|
|
+ @Schema(description = "非生产时间(H)")
|
|
|
+ @ExcelProperty("非生产时间(H)")
|
|
|
+ private BigDecimal nonProductionTime;
|
|
|
+
|
|
|
+ @Schema(description = "非生产时间原因", example = "不香")
|
|
|
+ @ExcelProperty("非生产时间原因")
|
|
|
+ private String nptReason;
|
|
|
+
|
|
|
+ @Schema(description = "施工开始日期")
|
|
|
+ @ExcelProperty("施工开始日期")
|
|
|
+ private LocalDateTime constructionStartDate;
|
|
|
+
|
|
|
+ @Schema(description = "施工结束日期")
|
|
|
+ @ExcelProperty("施工结束日期")
|
|
|
+ private LocalDateTime constructionEndDate;
|
|
|
+
|
|
|
+ @Schema(description = "当日生产情况生产动态", example = "1")
|
|
|
+ @ExcelProperty("当日生产情况生产动态")
|
|
|
+ private String productionStatus;
|
|
|
+
|
|
|
+ @Schema(description = "下步工作计划")
|
|
|
+ @ExcelProperty("下步工作计划")
|
|
|
+ private String nextPlan;
|
|
|
+
|
|
|
+ @Schema(description = "施工状态(动迁 准备 施工 完工)", example = "1")
|
|
|
+ @ExcelProperty("施工状态(动迁 准备 施工 完工)")
|
|
|
+ private Integer rigStatus;
|
|
|
+
|
|
|
+ @Schema(description = "人员情况")
|
|
|
+ @ExcelProperty("人员情况")
|
|
|
+ private String personnel;
|
|
|
+
|
|
|
+ @Schema(description = "泥浆性能-密度(g/cm³)")
|
|
|
+ @ExcelProperty("泥浆性能-密度(g/cm³)")
|
|
|
+ private BigDecimal mudDensity;
|
|
|
+
|
|
|
+ @Schema(description = "泥浆性能-粘度(S)")
|
|
|
+ @ExcelProperty("泥浆性能-粘度(S)")
|
|
|
+ private BigDecimal mudViscosity;
|
|
|
+
|
|
|
+ @Schema(description = "水平段长度(m) 适用于水平井")
|
|
|
+ @ExcelProperty("水平段长度(m) 适用于水平井")
|
|
|
+ private BigDecimal lateralLength;
|
|
|
+
|
|
|
+ @Schema(description = "井斜(°)")
|
|
|
+ @ExcelProperty("井斜(°)")
|
|
|
+ private BigDecimal wellInclination;
|
|
|
+
|
|
|
+ @Schema(description = "方位(°)")
|
|
|
+ @ExcelProperty("方位(°)")
|
|
|
+ private BigDecimal azimuth;
|
|
|
+
|
|
|
+ @Schema(description = "不同专业公司的扩展属性值")
|
|
|
+ @ExcelProperty("不同专业公司的扩展属性值")
|
|
|
+ private String extProperty;
|
|
|
+
|
|
|
+ @Schema(description = "排序值")
|
|
|
+ @ExcelProperty("排序值")
|
|
|
+ private Integer sort;
|
|
|
+
|
|
|
+ @Schema(description = "备注", example = "随便")
|
|
|
+ @ExcelProperty("备注")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+ @Schema(description = "状态(0启用 1禁用)", example = "2")
|
|
|
+ @ExcelProperty("状态(0启用 1禁用)")
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ @Schema(description = "流程实例id", example = "7723")
|
|
|
+ @ExcelProperty("流程实例id")
|
|
|
+ private String processInstanceId;
|
|
|
+
|
|
|
+ @Schema(description = "审批状态 未提交、审批中、审批通过、审批不通过、已取消", example = "2")
|
|
|
+ @ExcelProperty("审批状态 未提交、审批中、审批通过、审批不通过、已取消")
|
|
|
+ private Integer auditStatus;
|
|
|
+
|
|
|
+ @Schema(description = "创建时间")
|
|
|
+ @ExcelProperty("创建时间")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+}
|