ShowTestPlanDtMapper.java 858 B

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