“djh”
2025-03-05 06af2ffa26ed44bb2a8a60c0618f8d0490fdd6ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.gkhy.hazmat.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.hazmat.system.domain.HzSecientific;
import com.gkhy.hazmat.system.domain.vo.HzSecientificVo;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface HzSecientificMapper extends BaseMapper<HzSecientific> {
    List<HzSecientificVo> selectSecientificBatch(HzSecientific hzSecientific);
 
    HzSecientificVo selectBySecientificName(String name);
}