IPropertyFeeService.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.system.service;
  2. import com.ruoyi.common.core.domain.AjaxResult;
  3. import com.ruoyi.system.domain.houseInfo.PropertyFee;
  4. import java.util.List;
  5. /**
  6. * 物业费管理Service接口
  7. *
  8. * @author boman
  9. * @date 2025-03-03
  10. */
  11. public interface IPropertyFeeService
  12. {
  13. /**
  14. * 查询物业费管理
  15. *
  16. * @param propertyId 物业费管理主键
  17. * @return 物业费管理
  18. */
  19. public PropertyFee selectPropertyFeeByPropertyId(Long propertyId);
  20. /**
  21. * 查询物业费管理列表
  22. *
  23. * @param propertyFee 物业费管理
  24. * @return 物业费管理集合
  25. */
  26. public List<PropertyFee> selectPropertyFeeList(PropertyFee propertyFee);
  27. /**
  28. * 新增物业费管理
  29. *
  30. * @param propertyFee 物业费管理
  31. * @return 结果
  32. */
  33. public int insertPropertyFee(PropertyFee propertyFee);
  34. /**
  35. * 修改物业费管理
  36. *
  37. * @param propertyFee 物业费管理
  38. * @return 结果
  39. */
  40. public int updatePropertyFee(PropertyFee propertyFee);
  41. /**
  42. * 批量删除物业费管理
  43. *
  44. * @param propertyIds 需要删除的物业费管理主键集合
  45. * @return 结果
  46. */
  47. public int deletePropertyFeeByPropertyIds(Long[] propertyIds);
  48. /**
  49. * 删除物业费管理信息
  50. *
  51. * @param propertyId 物业费管理主键
  52. * @return 结果
  53. */
  54. public int deletePropertyFeeByPropertyId(Long propertyId);
  55. AjaxResult statistics(PropertyFee propertyFee);
  56. AjaxResult CallPayment(Long houseId);
  57. AjaxResult CallPaymentAll(PropertyFee propertyFee);
  58. }