| | |
| | | import com.java110.web.smo.ICommunityServiceSMO; |
| | | import com.java110.web.smo.org.IAddOrgCommunitySMO; |
| | | import com.java110.web.smo.org.IAddOrgSMO; |
| | | import com.java110.web.smo.org.IListOrgCommunitysSMO; |
| | | import com.java110.web.smo.org.IListOrgNoCommunitysSMO; |
| | | import com.java110.web.smo.org.IListOrgsSMO; |
| | | import com.java110.web.smo.org.IListParentOrgsSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | private IAddOrgCommunitySMO addOrgCommunitySMOImpl; |
| | | |
| | | @Autowired |
| | | private IListOrgsSMO listOrgsSMOImpl; |
| | | private IListOrgNoCommunitysSMO listOrgNoCommunitysSMOImpl; |
| | | |
| | | @Autowired |
| | | private IListParentOrgsSMO listParentOrgsSMOImpl; |
| | |
| | | * @return 返回 ResponseEntity 对象 |
| | | */ |
| | | public ResponseEntity<String> list(IPageData pd) { |
| | | return listOrgsSMOImpl.listOrgs(pd); |
| | | return listOrgNoCommunitysSMOImpl.listOrgNoCommunitys(pd); |
| | | } |
| | | |
| | | |
| | |
| | | this.listParentOrgsSMOImpl = listParentOrgsSMOImpl; |
| | | } |
| | | |
| | | public IListOrgsSMO getListOrgsSMOImpl() { |
| | | return listOrgsSMOImpl; |
| | | } |
| | | |
| | | public void setListOrgsSMOImpl(IListOrgsSMO listOrgsSMOImpl) { |
| | | this.listOrgsSMOImpl = listOrgsSMOImpl; |
| | | } |
| | | |
| | | public ICommunityServiceSMO getCommunityServiceSMOImpl() { |
| | | return communityServiceSMOImpl; |