危化品全生命周期管理后端
“djh”
2025-03-05 06af2ffa26ed44bb2a8a60c0618f8d0490fdd6ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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<HzSecientific> {
    CommonPage selectSecientific(HzSecientific hzSecientific);
 
    int insertSecientific(HzSecientific hzSecientific);
 
    int updateSecientific(HzSecientific hzSecientific);
 
    int deleteSecientific(Long secientificId);
 
    Integer importExcel(MultipartFile file) throws IOException;
}