|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.daoRm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.pojoRm.RmAlarmStateLast; | 
|---|
|  |  |  | import com.dy.pipIrrGlobal.pojoRm.RmIntakeAmountDay; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Mapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Mapper | 
|---|
|  |  |  | public interface RmAlarmStateLastMapper { | 
|---|
|  |  |  | public interface RmAlarmStateLastMapper extends BaseMapper<RmAlarmStateLast> { | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * delete by primary key | 
|---|
|  |  |  | * | 
|---|
|  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * select by rtuAddr | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @param rtuAddr rtuAddr | 
|---|
|  |  |  | * @return object by rtuAddr | 
|---|
|  |  |  | * @param intakeId | 
|---|
|  |  |  | * @return object by intakeId | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<RmAlarmStateLast> selectByRtuAddr(String rtuAddr); | 
|---|
|  |  |  | List<RmAlarmStateLast> selectByIntakeId(Long intakeId); | 
|---|
|  |  |  | } | 
|---|