| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.yw.entity.ProTarEntity; |
| | | import org.springblade.modules.yw.excel.ProTarExcel; |
| | | import org.springblade.modules.yw.vo.ProTarVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 保护目标表 服务类 |
| | |
| | | */ |
| | | IPage<ProTarVO> selectProTarPage(IPage<ProTarVO> page, ProTarVO proTar); |
| | | |
| | | /** |
| | | * 导入保护目标信息 |
| | | * @param data |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | String importProTar(List<ProTarExcel> data, boolean isCovered); |
| | | } |