service-api/src/main/java/com/java110/api/smo/impl/UnitServiceSMOImpl.java
@@ -9,7 +9,7 @@
import com.java110.utils.constant.ServiceConstant;
import com.java110.utils.util.Assert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.java110.core.log.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
@@ -61,7 +61,7 @@
        //数据校验是否 商户是否入驻该小区
        super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/unit.queryUnits" + mapToUrlParam(paramIn);
        String apiUrl = "unit.queryUnits" + mapToUrlParam(paramIn);
        responseEntity = this.callCenterService(restTemplate, pd, "",
                apiUrl,
@@ -99,7 +99,7 @@
        //数据校验是否 商户是否入驻该小区
        super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/unit.saveUnit";
        String apiUrl = "unit.saveUnit";
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                apiUrl,
@@ -130,7 +130,7 @@
        //数据校验是否 商户是否入驻该小区
        super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/unit.updateUnit";
        String apiUrl = "unit.updateUnit";
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                apiUrl,
@@ -161,7 +161,7 @@
        //数据校验是否 商户是否入驻该小区
        super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/unit.deleteUnit";
        String apiUrl = "unit.deleteUnit";
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                apiUrl,
@@ -226,7 +226,7 @@
     */
    private void validateListUnit(IPageData pd) {
        Assert.jsonObjectHaveKey(pd.getReqData(), "communityId", "请求报文中未包含communityId节点");
        Assert.jsonObjectHaveKey(pd.getReqData(), "floorId", "请求报文中未包含floorId节点");
       // Assert.jsonObjectHaveKey(pd.getReqData(), "floorId", "请求报文中未包含floorId节点");
    }