|
|
@@ -3,6 +3,7 @@ package cn.iocoder.yudao.module.pms.controller.admin.iotprojecttaskschedule.vo;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
@Schema(description = "管理后台 - 项目任务时间表/施工进度新增/修改 Request VO")
|
|
|
@@ -30,6 +31,21 @@ public class IotProjectTaskScheduleSaveReqVO {
|
|
|
@Schema(description = "状态结束时间")
|
|
|
private LocalDateTime endTime;
|
|
|
|
|
|
+ @Schema(description = "计划注气量 方")
|
|
|
+ private BigDecimal planGasInjection;
|
|
|
+
|
|
|
+ @Schema(description = "计划进尺 m")
|
|
|
+ private BigDecimal planFootage;
|
|
|
+
|
|
|
+ @Schema(description = "计划井次(井)")
|
|
|
+ private BigDecimal planWellTrips;
|
|
|
+
|
|
|
+ @Schema(description = "计划层数(层)")
|
|
|
+ private BigDecimal planLayers;
|
|
|
+
|
|
|
+ @Schema(description = "工作量单位(井/层/方/m)")
|
|
|
+ private String workloadUnit;
|
|
|
+
|
|
|
@Schema(description = "备注", example = "你说的对")
|
|
|
private String remark;
|
|
|
|