zrj
2024-10-30 55a7406f78eaf19c49c58d6ae9cfc0dcf098ba2e
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.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;
 
/**
 * 救援队伍表 服务类
 *
 * @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);
}