| 12345678910111213141516171819202122 |
- package com.railway.business.baseinfo.mapper;
- import com.github.pagehelper.Page;
- import com.railway.business.baseinfo.domain.BusPrevent;
- import org.apache.ibatis.annotations.Mapper;
- import org.springframework.stereotype.Repository;
- /**
- * 智能查询-十防台账
- * @author wuhonghao
- * @date 2021/11/19
- */
- @Mapper
- @Repository
- public interface BusPreventMapper {
- /**
- * 智能查询
- */
- Page<BusPrevent> smartQuery(BusPrevent busPrevent);
- }
|