“djh”
2025-02-24 34f448ffe2aacb496c15ab5da44a24128e0682be
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);
}