CustomerElectronicCardMapper.java 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.yijia.customer.mapper;
  2. import java.util.List;
  3. import com.yijia.customer.domain.CustomerElectronicCard;
  4. /**
  5. * 客户电子会员卡(储蓄卡)Mapper接口
  6. *
  7. * @author yijia
  8. * @date 2021-04-12
  9. */
  10. public interface CustomerElectronicCardMapper
  11. {
  12. /**
  13. * 查询客户电子会员卡(储蓄卡)
  14. *
  15. * @param id 客户电子会员卡(储蓄卡)ID
  16. * @return 客户电子会员卡(储蓄卡)
  17. */
  18. public CustomerElectronicCard selectCustomerElectronicCardById(Long id);
  19. /**
  20. * 查询客户电子会员卡(储蓄卡)列表
  21. *
  22. * @param customerElectronicCard 客户电子会员卡(储蓄卡)
  23. * @return 客户电子会员卡(储蓄卡)集合
  24. */
  25. public List<CustomerElectronicCard> selectCustomerElectronicCardList(CustomerElectronicCard customerElectronicCard);
  26. /**
  27. * 新增客户电子会员卡(储蓄卡)
  28. *
  29. * @param customerElectronicCard 客户电子会员卡(储蓄卡)
  30. * @return 结果
  31. */
  32. public int insertCustomerElectronicCard(CustomerElectronicCard customerElectronicCard);
  33. /**
  34. * 修改客户电子会员卡(储蓄卡)
  35. *
  36. * @param customerElectronicCard 客户电子会员卡(储蓄卡)
  37. * @return 结果
  38. */
  39. public int updateCustomerElectronicCard(CustomerElectronicCard customerElectronicCard);
  40. /**
  41. * 删除客户电子会员卡(储蓄卡)
  42. *
  43. * @param id 客户电子会员卡(储蓄卡)ID
  44. * @return 结果
  45. */
  46. public int deleteCustomerElectronicCardById(Long id);
  47. /**
  48. * 批量删除客户电子会员卡(储蓄卡)
  49. *
  50. * @param ids 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteCustomerElectronicCardByIds(Long[] ids);
  54. /**
  55. * 查询电子会员数据
  56. */
  57. public CustomerElectronicCard listSum(CustomerElectronicCard customerElectronicCard);
  58. /**
  59. * 查询电子会员报表数据
  60. */
  61. public List<CustomerElectronicCard> selectCard(CustomerElectronicCard customerElectronicCard);
  62. public List<CustomerElectronicCard> selectCardPage(CustomerElectronicCard customerElectronicCard);
  63. public CustomerElectronicCard listHYData(CustomerElectronicCard customerElectronicCard);
  64. public CustomerElectronicCard listJRHYData(CustomerElectronicCard customerElectronicCard);
  65. }