石墨消解仪后端服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
323 B

  1. package com.iflytop.gd.system.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.iflytop.gd.system.model.entity.Ores;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 矿石持久层接口
  7. */
  8. @Mapper
  9. public interface OresMapper extends BaseMapper<Ores> {
  10. Ores findByName(String name);
  11. }