package com.dy.pipIrrGlobal.daoTmp;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.voTmp.VoStLossMonth;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* @Author: liurunyu
|
* @Date: 2024/12/11 11:15
|
* @Description
|
*/
|
@Mapper
|
public interface DeleteMapper extends BaseMapper<Object> {
|
|
/**
|
* 查询全部漏损月统计
|
* @return 实体集合
|
*/
|
List<VoStLossMonth> selectAllStLossMonth() ;
|
|
int deleteStLossMonthById(Long id) ;
|
}
|