ShowBdycMapper.java 757 B

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