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);
|
}
|