BusPreventMapper.java 458 B

12345678910111213141516171819202122
  1. package com.railway.business.baseinfo.mapper;
  2. import com.github.pagehelper.Page;
  3. import com.railway.business.baseinfo.domain.BusPrevent;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.springframework.stereotype.Repository;
  6. /**
  7. * 智能查询-十防台账
  8. * @author wuhonghao
  9. * @date 2021/11/19
  10. */
  11. @Mapper
  12. @Repository
  13. public interface BusPreventMapper {
  14. /**
  15. * 智能查询
  16. */
  17. Page<BusPrevent> smartQuery(BusPrevent busPrevent);
  18. }