From b1dc9988b9587add132a01faa6bc09e162fe1491 Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期一, 08 七月 2024 21:39:38 +0800 Subject: [PATCH] 1、开关阀报中增加农户关联; 2、工作报中增加农户关联; 3、取水口损失流量完善; 4、实现取水日取水量统计。 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWorkReportLastMapper.java | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWorkReportLastMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWorkReportLastMapper.java index 2357550..779fd6a 100644 --- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWorkReportLastMapper.java +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoRm/RmWorkReportLastMapper.java @@ -1,5 +1,7 @@ package com.dy.pipIrrGlobal.daoRm; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.dy.pipIrrGlobal.pojoRm.RmTimingReportHistory; import com.dy.pipIrrGlobal.pojoRm.RmWorkReportLast; import org.apache.ibatis.annotations.Mapper; @@ -11,7 +13,7 @@ * @Description */ @Mapper -public interface RmWorkReportLastMapper { +public interface RmWorkReportLastMapper extends BaseMapper<RmWorkReportLast> { /** * delete by primary key * @@ -63,8 +65,8 @@ /** * select by primary key * - * @param rtuAddr 鎺у埗鍣ㄥ湴鍧� + * @param intakeId 鎺у埗鍣ㄦ墍缁戝彇姘村彛瀵硅薄id * @return object by rtuAddr */ - List<RmWorkReportLast> selectByRtuAddr(String rtuAddr); + List<RmWorkReportLast> selectByIntakeId(Long intakeId); } \ No newline at end of file -- Gitblit v1.8.0