package com.gkhy.hazmat.system.service; import com.baomidou.mybatisplus.extension.service.IService; import com.gkhy.hazmat.common.api.CommonPage; import com.gkhy.hazmat.system.domain.HzSecientific; import org.springframework.web.multipart.MultipartFile; import java.io.IOException; public interface HzSecientificService extends IService { CommonPage selectSecientific(HzSecientific hzSecientific); int insertSecientific(HzSecientific hzSecientific); int updateSecientific(HzSecientific hzSecientific); int deleteSecientific(Long secientificId); Integer importExcel(MultipartFile file) throws IOException; }