ICustomerLabelService.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.yijia.label.service;
  2. import java.util.List;
  3. import com.yijia.label.domain.CustomerLabel;
  4. import com.yijia.label.domain.RequstCustomerLabel;
  5. /**
  6. * 用户标签Service接口
  7. *
  8. * @author yijia
  9. * @date 2021-06-15
  10. */
  11. public interface ICustomerLabelService
  12. {
  13. /**
  14. * 查询用户标签
  15. *
  16. * @param id 用户标签ID
  17. * @return 用户标签
  18. */
  19. public CustomerLabel selectCustomerLabelById(Integer id);
  20. /**
  21. * 查询用户标签列表
  22. *
  23. * @param customerLabel 用户标签
  24. * @return 用户标签集合
  25. */
  26. public List<CustomerLabel> selectCustomerLabelList(CustomerLabel customerLabel);
  27. /**
  28. * 新增用户标签
  29. *
  30. * @param customerLabel 用户标签
  31. * @return 结果
  32. */
  33. public int insertCustomerLabel(CustomerLabel customerLabel);
  34. /**
  35. * 修改用户标签
  36. *
  37. * @param customerLabel 用户标签
  38. * @return 结果
  39. */
  40. public int updateCustomerLabel(CustomerLabel customerLabel);
  41. /**
  42. * 批量删除用户标签
  43. *
  44. * @param ids 需要删除的用户标签ID
  45. * @return 结果
  46. */
  47. public int deleteCustomerLabelByIds(Integer[] ids);
  48. /**
  49. * 删除用户标签信息
  50. *
  51. * @param id 用户标签ID
  52. * @return 结果
  53. */
  54. public int deleteCustomerLabelById(Integer id);
  55. /**
  56. * 查询没有标签的客户信息
  57. * @param customerLabel
  58. * @return
  59. */
  60. public List<CustomerLabel> selectNotCustomerLabelInfo(CustomerLabel customerLabel);
  61. /**
  62. *
  63. * @param customerLabel
  64. * @return
  65. */
  66. public int editCustomerLabel(CustomerLabel customerLabel);
  67. /**
  68. * 查询本标签的客户手机号
  69. * @param customerLabel
  70. * @return
  71. */
  72. public List<String> selectPhoneList(CustomerLabel customerLabel);
  73. }