| 1234567891011121314151617181920212223 |
- package com.railway.business.baseinfo.service;
- import com.github.pagehelper.Page;
- import com.railway.business.baseinfo.domain.BusBlq;
- import com.railway.business.baseinfo.domain.BusPrevent;
- import com.railway.business.baseinfo.domain.vo.BusPreventQueryVo;
- import java.util.List;
- /**
- * 智能查询-九防台账
- * @author wuhonghao
- * @date 2021/11/19
- */
- public interface IBusPreventService {
- /**
- * 智能查询
- */
- List<BusPrevent> smartQuery(BusPreventQueryVo busPreventQueryVo);
- }
|