|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.daoRm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.pojoRm.RmLossHistory; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.pojoRm.RmLossLast; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Mapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Mapper | 
|---|
|  |  |  | public interface RmLossLastMapper { | 
|---|
|  |  |  | public interface RmLossLastMapper extends BaseMapper<RmLossLast> { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * delete by primary key | 
|---|
|  |  |  | * @param id primaryKey | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * select by rtuAddr | 
|---|
|  |  |  | * @param rtuAddr 控制器地址 | 
|---|
|  |  |  | * @param intakeId 控制器所绑取水口ID | 
|---|
|  |  |  | * @return object by rtuAddr | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<RmLossLast> selectByRtuAddr(String rtuAddr) ; | 
|---|
|  |  |  | List<RmLossLast> selectByIntakeId(Long intakeId) ; | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * select by dt | 
|---|
|  |  |  | * @param date 日期(yyyy-mm-dd) | 
|---|