PdmReportAppointmentDayMapper.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.ruoyi.powerdistribution.mapper;
  2. import java.util.List;
  3. import com.ruoyi.powerdistribution.domain.PdmReportAppointmentDay;
  4. /**
  5. * 履职日统计Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2024-11-28
  9. */
  10. public interface PdmReportAppointmentDayMapper
  11. {
  12. /**
  13. * 查询履职日统计
  14. *
  15. * @param id 履职日统计主键
  16. * @return 履职日统计
  17. */
  18. public PdmReportAppointmentDay selectPdmReportAppointmentDayById(Long id);
  19. /**
  20. * 查询履职日统计列表
  21. *
  22. * @param pdmReportAppointmentDay 履职日统计
  23. * @return 履职日统计集合
  24. */
  25. public List<PdmReportAppointmentDay> selectPdmReportAppointmentDayList(PdmReportAppointmentDay pdmReportAppointmentDay);
  26. /**
  27. * 新增履职日统计
  28. *
  29. * @param pdmReportAppointmentDay 履职日统计
  30. * @return 结果
  31. */
  32. public int insertPdmReportAppointmentDay(PdmReportAppointmentDay pdmReportAppointmentDay);
  33. /**
  34. * 修改履职日统计
  35. *
  36. * @param pdmReportAppointmentDay 履职日统计
  37. * @return 结果
  38. */
  39. public int updatePdmReportAppointmentDay(PdmReportAppointmentDay pdmReportAppointmentDay);
  40. /**
  41. * 删除履职日统计
  42. *
  43. * @param id 履职日统计主键
  44. * @return 结果
  45. */
  46. public int deletePdmReportAppointmentDayById(Long id);
  47. /**
  48. * 批量删除履职日统计
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deletePdmReportAppointmentDayByIds(Long[] ids);
  54. /**
  55. * 统计履职情况
  56. * @param pdmReportAppointmentDay
  57. * @return
  58. */
  59. List<PdmReportAppointmentDay> selectAppointmentReport(PdmReportAppointmentDay pdmReportAppointmentDay);
  60. }