Selaa lähdekoodia

pms 瑞鹰日报 修改字段名称

zhangcl 2 viikkoa sitten
vanhempi
commit
39660ff2a0

+ 1 - 1
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/controller/admin/iotrydailyreport/vo/IotRyDailyReportPageReqVO.java

@@ -35,7 +35,7 @@ public class IotRyDailyReportPageReqVO extends PageParam {
 
     @Schema(description = "上井次完井时间")
     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
-    private LocalDateTime[] lastestWellDoneTime;
+    private LocalDateTime[] latestWellDoneTime;
 
     @Schema(description = "当前井深(m)")
     private BigDecimal currentDepth;

+ 1 - 1
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/controller/admin/iotrydailyreport/vo/IotRyDailyReportRespVO.java

@@ -39,7 +39,7 @@ public class IotRyDailyReportRespVO {
 
     @Schema(description = "上井次完井时间")
     @ExcelProperty("上井次完井时间")
-    private LocalDateTime lastestWellDoneTime;
+    private LocalDateTime latestWellDoneTime;
 
     @Schema(description = "当前井深(m)")
     @ExcelProperty("当前井深(m)")

+ 1 - 1
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/controller/admin/iotrydailyreport/vo/IotRyDailyReportSaveReqVO.java

@@ -29,7 +29,7 @@ public class IotRyDailyReportSaveReqVO {
     private BigDecimal relocationDays;
 
     @Schema(description = "上井次完井时间")
-    private LocalDateTime lastestWellDoneTime;
+    private LocalDateTime latestWellDoneTime;
 
     @Schema(description = "当前井深(m)")
     private BigDecimal currentDepth;

+ 1 - 1
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/dal/dataobject/iotrydailyreport/IotRyDailyReportDO.java

@@ -52,7 +52,7 @@ public class IotRyDailyReportDO extends BaseDO {
     /**
      * 上井次完井时间
      */
-    private LocalDateTime lastestWellDoneTime;
+    private LocalDateTime latestWellDoneTime;
     /**
      * 当前井深(m)
      */

+ 1 - 1
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/dal/mysql/iotrydailyreport/IotRyDailyReportMapper.java

@@ -29,7 +29,7 @@ public interface IotRyDailyReportMapper extends BaseMapperX<IotRyDailyReportDO>
                 .eqIfPresent(IotRyDailyReportDO::getTaskId, reqVO.getTaskId())
                 .eqIfPresent(IotRyDailyReportDO::getProjectClassification, reqVO.getProjectClassification())
                 .eqIfPresent(IotRyDailyReportDO::getRelocationDays, reqVO.getRelocationDays())
-                .betweenIfPresent(IotRyDailyReportDO::getLastestWellDoneTime, reqVO.getLastestWellDoneTime())
+                .betweenIfPresent(IotRyDailyReportDO::getLatestWellDoneTime, reqVO.getLatestWellDoneTime())
                 .eqIfPresent(IotRyDailyReportDO::getCurrentDepth, reqVO.getCurrentDepth())
                 .eqIfPresent(IotRyDailyReportDO::getDailyFootage, reqVO.getDailyFootage())
                 .eqIfPresent(IotRyDailyReportDO::getMonthlyFootage, reqVO.getMonthlyFootage())