ICenterdataTCommunicationService.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.ruoyi.system.service;
  2. import com.ruoyi.system.domain.CenterdataTCommunication;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * 通讯录Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2022-06-20
  10. */
  11. public interface ICenterdataTCommunicationService {
  12. /**
  13. * 查询通讯录列表
  14. *
  15. * @param centerdataTCommunication 通讯录
  16. * @return 通讯录集合
  17. */
  18. List<CenterdataTCommunication> selectCenterdataTCommunicationList(CenterdataTCommunication centerdataTCommunication);
  19. /**
  20. * 查询通讯录
  21. *
  22. * @param id 通讯录主键
  23. * @return 通讯录
  24. */
  25. CenterdataTCommunication selectCenterdataTCommunicationById(String id);
  26. /**
  27. * 新增通讯录
  28. *
  29. * @param centerdataTCommunication 通讯录
  30. * @return 结果
  31. */
  32. int insertCenterdataTCommunication(CenterdataTCommunication centerdataTCommunication);
  33. /**
  34. * 修改通讯录
  35. *
  36. * @param centerdataTCommunication 通讯录
  37. * @return 结果
  38. */
  39. int updateCenterdataTCommunication(CenterdataTCommunication centerdataTCommunication);
  40. /**
  41. * 批量删除通讯录
  42. *
  43. * @param ids 需要删除的通讯录主键集合
  44. * @return 结果
  45. */
  46. int deleteCenterdataTCommunicationByIds(String[] ids);
  47. List<Map<String, Object>> getCommunicationByDeptId(CenterdataTCommunication centerdataTCommunication);
  48. int handlePublish(CenterdataTCommunication centerdataTCommunication);
  49. }