IShowYdtsService.java 639 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.railway.business.bi.service;
  2. import com.railway.business.bi.domain.ShowYdts;
  3. import com.railway.business.bi.domain.vo.YdtsQuery;
  4. import java.util.List;
  5. /**
  6. * 大屏展示-远动调试
  7. * @author ZhaoMn
  8. * @date 2023/01/30
  9. */
  10. public interface IShowYdtsService{
  11. /**
  12. * 新增
  13. */
  14. int create(ShowYdts showYdts);
  15. /**
  16. * 删除
  17. */
  18. int delete(String[] ids);
  19. /**
  20. * 更新
  21. */
  22. int update(ShowYdts showYdts);
  23. /**
  24. * 获取单个
  25. */
  26. ShowYdts getInfo(String id);
  27. /**
  28. * 查询列表
  29. */
  30. List<ShowYdts> getList(YdtsQuery query);
  31. List<String> getLineList();
  32. }