ITrsNameResultsService.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.project.service;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.ruoyi.project.domain.TrsNameResults;
  5. /**
  6. * 人名职务监测Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2025-03-24
  10. */
  11. public interface ITrsNameResultsService
  12. {
  13. /**
  14. * 查询人名职务监测
  15. *
  16. * @param id 人名职务监测主键
  17. * @return 人名职务监测
  18. */
  19. public TrsNameResults selectTrsNameResultsById(Long id);
  20. /**
  21. * 查询人名职务监测列表
  22. *
  23. * @param trsNameResults 人名职务监测
  24. * @return 人名职务监测集合
  25. */
  26. public List<TrsNameResults> selectTrsNameResultsList(TrsNameResults trsNameResults);
  27. /**
  28. * 新增人名职务监测
  29. *
  30. * @param trsNameResults 人名职务监测
  31. * @return 结果
  32. */
  33. public int insertTrsNameResults(TrsNameResults trsNameResults);
  34. /**
  35. * 修改人名职务监测
  36. *
  37. * @param trsNameResults 人名职务监测
  38. * @return 结果
  39. */
  40. public int updateTrsNameResults(TrsNameResults trsNameResults);
  41. /**
  42. * 批量删除人名职务监测
  43. *
  44. * @param ids 需要删除的人名职务监测主键集合
  45. * @return 结果
  46. */
  47. public int deleteTrsNameResultsByIds(String ids);
  48. /**
  49. * 删除人名职务监测信息
  50. *
  51. * @param id 人名职务监测主键
  52. * @return 结果
  53. */
  54. public int deleteTrsNameResultsById(Long id);
  55. Map<String, Integer> getStatistics(TrsNameResults trsSensitiveResults);
  56. }