石墨消解仪后端服务
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.

19 lines
469 B

  1. package com.iflytop.gd.app.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.iflytop.gd.app.model.entity.Crafts;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Select;
  6. import java.util.List;
  7. /**
  8. * 工艺持久层接口
  9. */
  10. @Mapper
  11. public interface CraftsMapper extends BaseMapper<Crafts> {
  12. @Select("SELECT * FROM crafts WHERE ores_id = #{oresId}")
  13. List<Crafts> selectAllByOresId(Long oresId);
  14. }