zrj
2024-10-31 2237bc8d0fd0aed40c7daf7398cb89c65a74b7ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package org.springblade.modules.yw.mapper;
 
import org.apache.ibatis.annotations.Param;
import org.springblade.modules.yw.entity.RescueTeamEntity;
import org.springblade.modules.yw.vo.RescueTeamVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import java.util.Map;
 
/**
 * 救援队伍表 Mapper 接口
 *
 * @author BladeX
 * @since 2024-10-28
 */
public interface RescueTeamMapper extends BaseMapper<RescueTeamEntity> {
 
    /**
     * 自定义分页
     *
     * @param page
     * @param rescueTeam
     * @return
     */
    List<RescueTeamVO> selectRescueTeamPage(IPage page,@Param("rescueTeam") RescueTeamVO rescueTeam);
 
    /**
     * 救援队伍统计查询
     * @param rescueTeam
     * @return
     */
    List<Map<String, Object>> getStatisticData(@Param("rescueTeam") RescueTeamVO rescueTeam);
}