ShowYdtsMapper.java 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.railway.business.bi.mapper;
  2. import com.github.pagehelper.Page;
  3. import com.railway.business.bi.domain.ShowYdts;
  4. import com.railway.business.bi.domain.vo.YdtsQuery;
  5. import org.apache.ibatis.annotations.Mapper;
  6. import org.apache.ibatis.annotations.Param;
  7. import org.springframework.stereotype.Repository;
  8. /**
  9. * 大屏展示-远动调试
  10. * @author ZhaoMn
  11. * @date 2023/01/30
  12. */
  13. @Mapper
  14. @Repository
  15. public interface ShowYdtsMapper {
  16. /**
  17. * 新增
  18. */
  19. int insert(ShowYdts showYdts);
  20. /**
  21. * 删除
  22. */
  23. int delete(@Param("id") String id);
  24. /**
  25. * 更新
  26. */
  27. int update(ShowYdts showYdts);
  28. /**
  29. * 获取单个
  30. */
  31. ShowYdts getInfo(@Param("id") String id);
  32. /**
  33. * 查询列表
  34. */
  35. Page<ShowYdts> getList(YdtsQuery query);
  36. }