WdTopologicalDao.java 621 B

123456789101112131415161718
  1. package com.ruoyi.demo.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.ruoyi.demo.entity.WdTopological;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.apache.ibatis.annotations.Select;
  7. import java.util.List;
  8. @Mapper
  9. public interface WdTopologicalDao extends BaseMapper<WdTopological> {
  10. public void insertList(@Param("wdTopological") List<WdTopological> wdTopological);
  11. @Select("select * from bl_wd_topological where center_wd_id = #{centerWdId}")
  12. public List<WdTopological> selectWdTopologicalListById(String centerWdId);
  13. }