wuxw
2019-11-21 620d850d08121f3ca8a2e3e921e94eeff4d85595
WebService/src/main/java/com/java110/web/components/community/AuditCommunityManageComponent.java
@@ -2,9 +2,10 @@
import com.alibaba.fastjson.JSONObject;
import com.java110.common.constant.CommunityStateConstant;
import com.java110.utils.constant.StateConstant;
import com.java110.core.context.IPageData;
import com.java110.core.context.PageData;
import com.java110.web.smo.community.IAuditCommunitySMO;
import com.java110.web.smo.community.IListCommunitysSMO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
@@ -24,6 +25,9 @@
    @Autowired
    private IListCommunitysSMO listCommunitysSMOImpl;
    @Autowired
    private IAuditCommunitySMO auditCommunitySMOImpl;
    /**
     * 查询小区列表
     *
@@ -33,12 +37,22 @@
    public ResponseEntity<String> list(IPageData pd) {
        JSONObject reqParam = JSONObject.parseObject(pd.getReqData());
        reqParam.put("state", CommunityStateConstant.NO_AUDIT);
        reqParam.put("state", StateConstant.NO_AUDIT);
        IPageData newPd = PageData.newInstance().builder(pd.getUserId(), pd.getToken(),
                reqParam.toJSONString(), pd.getComponentCode(), pd.getComponentMethod(), "", pd.getSessionId());
        return listCommunitysSMOImpl.listCommunitys(newPd);
    }
    /**
     * 审核 小区
     *
     * @param pd 页面数据封装
     * @return 返回 ResponseEntity 对象
     */
    public ResponseEntity<String> audit(IPageData pd) {
        return auditCommunitySMOImpl.auditCommunity(pd);
    }
    public IListCommunitysSMO getListCommunitysSMOImpl() {
@@ -48,4 +62,12 @@
    public void setListCommunitysSMOImpl(IListCommunitysSMO listCommunitysSMOImpl) {
        this.listCommunitysSMOImpl = listCommunitysSMOImpl;
    }
    public IAuditCommunitySMO getAuditCommunitySMOImpl() {
        return auditCommunitySMOImpl;
    }
    public void setAuditCommunitySMOImpl(IAuditCommunitySMO auditCommunitySMOImpl) {
        this.auditCommunitySMOImpl = auditCommunitySMOImpl;
    }
}