危化品全生命周期管理后端
“djh”
2025-02-24 34f448ffe2aacb496c15ab5da44a24128e0682be
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;
}