wuxw
2020-02-07 6f525fabab9a33d840e1bf1a2139161537f58f23
WebService/src/main/java/com/java110/web/components/org/OrgManageComponent.java
@@ -3,6 +3,7 @@
import com.java110.core.context.IPageData;
import com.java110.web.smo.org.IListOrgsSMO;
import com.java110.web.smo.org.IListParentOrgsSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
@@ -21,6 +22,9 @@
    @Autowired
    private IListOrgsSMO listOrgsSMOImpl;
    @Autowired
    private IListParentOrgsSMO listParentOrgsSMOImpl;
    /**
     * 查询组织管理列表
     * @param pd 页面数据封装
@@ -30,6 +34,10 @@
        return listOrgsSMOImpl.listOrgs(pd);
    }
    public ResponseEntity<String> getParentOrg(IPageData pd){
        return listParentOrgsSMOImpl.listParentOrgs(pd);
    }
    public IListOrgsSMO getListOrgsSMOImpl() {
        return listOrgsSMOImpl;
    }
@@ -37,4 +45,13 @@
    public void setListOrgsSMOImpl(IListOrgsSMO listOrgsSMOImpl) {
        this.listOrgsSMOImpl = listOrgsSMOImpl;
    }
    public IListParentOrgsSMO getListParentOrgsSMOImpl() {
        return listParentOrgsSMOImpl;
    }
    public void setListParentOrgsSMOImpl(IListParentOrgsSMO listParentOrgsSMOImpl) {
        this.listParentOrgsSMOImpl = listParentOrgsSMOImpl;
    }
}