IBusPreventService.java 507 B

1234567891011121314151617181920212223
  1. package com.railway.business.baseinfo.service;
  2. import com.github.pagehelper.Page;
  3. import com.railway.business.baseinfo.domain.BusBlq;
  4. import com.railway.business.baseinfo.domain.BusPrevent;
  5. import com.railway.business.baseinfo.domain.vo.BusPreventQueryVo;
  6. import java.util.List;
  7. /**
  8. * 智能查询-九防台账
  9. * @author wuhonghao
  10. * @date 2021/11/19
  11. */
  12. public interface IBusPreventService {
  13. /**
  14. * 智能查询
  15. */
  16. List<BusPrevent> smartQuery(BusPreventQueryVo busPreventQueryVo);
  17. }