IQueryOweFee.java 707 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.java110.fee.bmo;
  2. import com.java110.dto.fee.FeeDto;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IQueryOweFee {
  5. /**
  6. * 查询费用
  7. *
  8. * @param feeDto
  9. * @return
  10. */
  11. ResponseEntity<String> query(FeeDto feeDto);
  12. /**
  13. * 查询费用
  14. *
  15. * @param feeDto
  16. * @return
  17. */
  18. ResponseEntity<String> queryAllOwneFee(FeeDto feeDto);
  19. /**
  20. * 查询费用作用对象 接口
  21. *
  22. * @param feeDto
  23. * @return
  24. */
  25. ResponseEntity<String> listFeeObj(FeeDto feeDto);
  26. /**
  27. * 查询所有房屋的欠费
  28. * @param feeDto
  29. * @return
  30. */
  31. ResponseEntity<String> querys(FeeDto feeDto);
  32. }