wuxw
2019-08-13 9e29441646434d9f54a2c3e855a724633885d8a4
WebService/src/main/java/com/java110/web/components/community/CommunityManageComponent.java
@@ -2,7 +2,7 @@
import com.java110.core.context.IPageData;
import com.java110.web.smo.community.ICommunityManageSMO;
import com.java110.web.smo.community.IListCommunitysSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
@@ -19,7 +19,7 @@
public class CommunityManageComponent {
    @Autowired
    private ICommunityManageSMO communityManageSMOImpl;
    private IListCommunitysSMO listCommunitysSMOImpl;
    /**
     * 查询小区列表
@@ -27,14 +27,14 @@
     * @return 返回 ResponseEntity 对象
     */
    public ResponseEntity<String> list(IPageData pd){
        return communityManageSMOImpl.listCommunitys(pd);
        return listCommunitysSMOImpl.listCommunitys(pd);
    }
    public ICommunityManageSMO getCommunityManageSMOImpl() {
        return communityManageSMOImpl;
    public IListCommunitysSMO getListCommunitysSMOImpl() {
        return listCommunitysSMOImpl;
    }
    public void setCommunityManageSMOImpl(ICommunityManageSMO communityManageSMOImpl) {
        this.communityManageSMOImpl = communityManageSMOImpl;
    public void setListCommunitysSMOImpl(IListCommunitysSMO listCommunitysSMOImpl) {
        this.listCommunitysSMOImpl = listCommunitysSMOImpl;
    }
}