ChoosePurchaseApplyComponent.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.java110.web.components.purchaseApply;
  2. import com.java110.core.context.IPageData;
  3. import com.java110.web.smo.purchaseApply.IListPurchaseApplysSMO;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.http.ResponseEntity;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * 应用组件管理类
  9. * <p>
  10. * add by wuxw
  11. * <p>
  12. * 2019-06-29
  13. */
  14. @Component("choosePurchaseApply")
  15. public class ChoosePurchaseApplyComponent {
  16. @Autowired
  17. private IListPurchaseApplysSMO listPurchaseApplysSMOImpl;
  18. /**
  19. * 查询应用列表
  20. *
  21. * @param pd 页面数据封装
  22. * @return 返回 ResponseEntity 对象
  23. */
  24. public ResponseEntity<String> list(IPageData pd) {
  25. return listPurchaseApplysSMOImpl.listPurchaseApplys(pd);
  26. }
  27. public IListPurchaseApplysSMO getListPurchaseApplysSMOImpl() {
  28. return listPurchaseApplysSMOImpl;
  29. }
  30. public void setListPurchaseApplysSMOImpl(IListPurchaseApplysSMO listPurchaseApplysSMOImpl) {
  31. this.listPurchaseApplysSMOImpl = listPurchaseApplysSMOImpl;
  32. }
  33. }