liurunyu
2024-12-11 7c2e1e310bbb825aca954c7a228ec7d5625dd8d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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) ;
}