zhongrj
2024-12-26 a1272d78844574b86645149a0d8ca257c2b8fe91
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
35
36
37
38
39
40
41
42
package org.springblade.modules.yw.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.yw.entity.RescueTeamEntity;
import org.springblade.modules.yw.excel.RescueTeamExcel;
import org.springblade.modules.yw.vo.RescueTeamVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
 
import java.util.List;
import java.util.Map;
 
/**
 * 救援队伍表 服务类
 *
 * @author BladeX
 * @since 2024-10-28
 */
public interface IRescueTeamService extends IService<RescueTeamEntity> {
    /**
     * 自定义分页
     *
     * @param page
     * @param rescueTeam
     * @return
     */
    IPage<RescueTeamVO> selectRescueTeamPage(IPage<RescueTeamVO> page, RescueTeamVO rescueTeam);
 
    /**
     * 导入救援队伍信息
     * @param data
     * @param isCovered
     * @return
     */
    String importRescueTeam(List<RescueTeamExcel> data, boolean isCovered);
 
    /**
     * 救援队伍统计查询
     * @param rescueTeam
     * @return
     */
    List<Map<String,Object>> getStatisticData(RescueTeamVO rescueTeam);
}