ITMonthEndingClosingService.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.anpin.service;
  2. import com.ruoyi.anpin.domain.TMonthEndingClosing;
  3. import com.ruoyi.common.core.domain.AjaxResult;
  4. import java.util.List;
  5. /**
  6. * 月末结账Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2021-06-04
  10. */
  11. public interface ITMonthEndingClosingService
  12. {
  13. /**
  14. * 查询月末结账
  15. *
  16. * @param fId 月末结账ID
  17. * @return 月末结账
  18. */
  19. public TMonthEndingClosing selectTMonthEndingClosingById(Long fId);
  20. /**
  21. * 查询月末结账列表
  22. *
  23. * @param tMonthEndingClosing 月末结账
  24. * @return 月末结账集合
  25. */
  26. public List<TMonthEndingClosing> selectTMonthEndingClosingList(TMonthEndingClosing tMonthEndingClosing);
  27. /**
  28. * 新增月末结账
  29. *
  30. * @param tMonthEndingClosing 月末结账
  31. * @return 结果
  32. */
  33. public int insertTMonthEndingClosing(TMonthEndingClosing tMonthEndingClosing);
  34. /**
  35. * 修改月末结账
  36. *
  37. * @param tMonthEndingClosing 月末结账
  38. * @return 结果
  39. */
  40. public AjaxResult updateTMonthEndingClosing(TMonthEndingClosing tMonthEndingClosing);
  41. /**
  42. * 批量删除月末结账
  43. *
  44. * @param fIds 需要删除的月末结账ID
  45. * @return 结果
  46. */
  47. public int deleteTMonthEndingClosingByIds(Long[] fIds);
  48. /**
  49. * 删除月末结账信息
  50. *
  51. * @param fId 月末结账ID
  52. * @return 结果
  53. */
  54. public int deleteTMonthEndingClosingById(Long fId);
  55. }