BCustomerQuestionErrorMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.back.mapper;
  2. import com.ruoyi.back.domain.BCustomerQuestionError;
  3. import java.util.List;
  4. /**
  5. * 题目纠错Mapper接口
  6. *
  7. * @author mingxue
  8. * @date 2021-11-29
  9. */
  10. public interface BCustomerQuestionErrorMapper
  11. {
  12. /**
  13. * 查询题目纠错
  14. *
  15. * @param id 题目纠错ID
  16. * @return 题目纠错
  17. */
  18. public BCustomerQuestionError selectBCustomerQuestionErrorById(Long id);
  19. /**
  20. * 查询题目纠错列表
  21. *
  22. * @param bCustomerQuestionError 题目纠错
  23. * @return 题目纠错集合
  24. */
  25. public List<BCustomerQuestionError> selectBCustomerQuestionErrorList(BCustomerQuestionError bCustomerQuestionError);
  26. /**
  27. * 新增题目纠错
  28. *
  29. * @param bCustomerQuestionError 题目纠错
  30. * @return 结果
  31. */
  32. public int insertBCustomerQuestionError(BCustomerQuestionError bCustomerQuestionError);
  33. /**
  34. * 修改题目纠错
  35. *
  36. * @param bCustomerQuestionError 题目纠错
  37. * @return 结果
  38. */
  39. public int updateBCustomerQuestionError(BCustomerQuestionError bCustomerQuestionError);
  40. /**
  41. * 删除题目纠错
  42. *
  43. * @param id 题目纠错ID
  44. * @return 结果
  45. */
  46. public int deleteBCustomerQuestionErrorById(Long id);
  47. /**
  48. * 批量删除题目纠错
  49. *
  50. * @param ids 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteBCustomerQuestionErrorByIds(Long[] ids);
  54. }