| | |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * 救援队伍表 服务类 |
| | |
| | | */ |
| | | IPage<RescueTeamVO> selectRescueTeamPage(IPage<RescueTeamVO> page, RescueTeamVO rescueTeam); |
| | | |
| | | /** |
| | | * 导入救援队伍信息 |
| | | * @param data |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | String importRescueTeam(List<RescueTeamExcel> data, boolean isCovered); |
| | | } |