IKuaishouPromoterService.java 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruixuan.isc.service;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.ruixuan.common.core.domain.AjaxResult;
  4. import com.ruixuan.isc.entity.KuaishouPromoter;
  5. import java.util.List;
  6. /**
  7. * 快手达人 信息Service接口
  8. *
  9. * @author ruoyi
  10. * @date 2023-02-03
  11. */
  12. public interface IKuaishouPromoterService {
  13. /**
  14. * 查询快手达人 信息
  15. *
  16. * @param id 快手达人 信息主键
  17. * @return 快手达人 信息
  18. */
  19. public JSONObject selectKuaishouPromoterById(Long id);
  20. /**
  21. * 查询快手达人 信息列表
  22. *
  23. * @param kuaishouPromoter 快手达人 信息
  24. * @return 快手达人 信息集合
  25. */
  26. public List<KuaishouPromoter> selectKuaishouPromoterList(Long userId, Long promoterId, String promoterNickName, String parameter, String orderBy);
  27. /**
  28. * 新增快手达人 信息
  29. *
  30. * @param kuaishouPromoter 快手达人 信息
  31. * @return 结果
  32. */
  33. public int insertKuaishouPromoter(KuaishouPromoter kuaishouPromoter);
  34. /**
  35. * 修改快手达人 信息
  36. *
  37. * @param kuaishouPromoter 快手达人 信息
  38. * @return 结果
  39. */
  40. public int updateKuaishouPromoter(KuaishouPromoter kuaishouPromoter);
  41. /**
  42. * 删除快手达人 信息信息
  43. *
  44. * @param id 快手达人 信息主键
  45. * @return 结果
  46. */
  47. public int deleteKuaishouPromoterById(Long id, Long userId);
  48. AjaxResult getPromoterInfo(Long promoterId);
  49. KuaishouPromoter getOnlyPromoterInfo(Long promoterId);
  50. List<Long> selectPromoterIdList(List<Long> userList);
  51. JSONObject getgetMonthPromoterTotal(List<Long> userList, String start, String end);
  52. List<KuaishouPromoter> selectKuaishouPromoterList2(Long promoterId, String promoterNickName, String parameter, String orderBy);
  53. }