IImportRoomFee.java 624 B

1234567891011121314151617181920212223242526272829303132
  1. package com.java110.fee.bmo;
  2. import com.alibaba.fastjson.JSONObject;
  3. import org.springframework.http.ResponseEntity;
  4. /**
  5. * 导入房屋费用
  6. */
  7. public interface IImportRoomFee {
  8. /**
  9. * 欠费缴费接口
  10. * @param reqJson 缴费报文
  11. * @return
  12. */
  13. ResponseEntity<String> importFee(JSONObject reqJson);
  14. /**
  15. * 车辆费用导入
  16. * @param reqJson
  17. * @return
  18. */
  19. ResponseEntity<String> importCarFee(JSONObject reqJson);
  20. /**
  21. * 合同费用导入
  22. * @param reqJson
  23. * @return
  24. */
  25. ResponseEntity<String> importContractFees(JSONObject reqJson);
  26. }