ConfigPropertyFeeComponent.java 947 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.java110.web.components.fee;
  2. import com.java110.core.context.IPageData;
  3. import com.java110.web.smo.IFeeServiceSMO;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.http.ResponseEntity;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * @ClassName ViewPropertyFeeConfigComponent
  9. * @Description 展示物业费信息
  10. * @Author wuxw
  11. * @Date 2019/6/1 14:33
  12. * @Version 1.0
  13. * add by wuxw 2019/6/1
  14. **/
  15. @Component("configPropertyFee")
  16. public class ConfigPropertyFeeComponent {
  17. @Autowired
  18. private IFeeServiceSMO feeServiceSMOImpl;
  19. public ResponseEntity<String> change(IPageData pd) {
  20. return feeServiceSMOImpl.loadPropertyConfigFee(pd);
  21. }
  22. public IFeeServiceSMO getFeeServiceSMOImpl() {
  23. return feeServiceSMOImpl;
  24. }
  25. public void setFeeServiceSMOImpl(IFeeServiceSMO feeServiceSMOImpl) {
  26. this.feeServiceSMOImpl = feeServiceSMOImpl;
  27. }
  28. }