|
@@ -8,9 +8,11 @@ import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
|
|
import cn.iocoder.yudao.module.pms.controller.admin.iotrydailyreport.vo.IotRyDailyReportPageReqVO;
|
|
|
import cn.iocoder.yudao.module.pms.dal.dataobject.iotrydailyreport.IotRyDailyReportDO;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* 瑞鹰日报 Mapper
|
|
@@ -94,5 +96,12 @@ public interface IotRyDailyReportMapper extends BaseMapperX<IotRyDailyReportDO>
|
|
|
.last("limit 1"));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询瑞鹰日报实际进度
|
|
|
+ *
|
|
|
+ * @param reqVO
|
|
|
+ * @return 瑞鹰日报实际进度
|
|
|
+ */
|
|
|
+ List<IotRyDailyReportDO> selectListGrouped(@Param("reqVO") IotRyDailyReportPageReqVO reqVO);
|
|
|
|
|
|
}
|