wuxw
2020-01-02 c5cb75e69127ce6a2020be78e0a10f284e2091ca
WebService/src/main/java/com/java110/web/smo/applicationKey/impl/AddApplicationKeySMOImpl.java
@@ -3,6 +3,7 @@
import com.alibaba.fastjson.JSONObject;
import com.java110.core.component.AbstractComponentSMO;
import com.java110.core.context.IPageData;
import com.java110.entity.component.ComponentValidateResult;
import com.java110.utils.constant.PrivilegeCodeConstant;
import com.java110.utils.constant.ServiceConstant;
import com.java110.utils.util.Assert;
@@ -12,7 +13,6 @@
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
/**
@@ -32,6 +32,7 @@
        //Assert.hasKeyAndValue(paramIn, "xxx", "xxx");
        Assert.hasKeyAndValue(paramIn, "name", "必填,请填写姓名");
        Assert.hasKeyAndValue(paramIn, "communityId", "必填,请填写小区ID");
        Assert.hasKeyAndValue(paramIn, "tel", "必填,请填写手机号");
        Assert.hasKeyAndValue(paramIn, "typeCd", "必填,请选择用户类型");
        Assert.hasKeyAndValue(paramIn, "sex", "必填,请选择性别");
@@ -39,6 +40,9 @@
        Assert.hasKeyAndValue(paramIn, "idCard", "必填,请填写身份证号");
        Assert.hasKeyAndValue(paramIn, "startTime", "必填,请选择开始时间");
        Assert.hasKeyAndValue(paramIn, "endTime", "必填,请选择结束时间");
        Assert.hasKeyAndValue(paramIn, "locationTypeCd", "必填,位置不能为空");
        Assert.hasKeyAndValue(paramIn, "locationObjId", "必填,未选择位置对象");
        Assert.hasKeyAndValue(paramIn, "typeFlag", "必填,未选择钥匙类型");
        super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.LIST_APPLICATION_KEY);
@@ -48,8 +52,8 @@
    @Override
    protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
        ResponseEntity<String> responseEntity = null;
        super.validateStoreStaffCommunityRelationship(pd, restTemplate);
        ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
        paramIn.put("storeId", result.getStoreId());
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                ServiceConstant.SERVICE_API_URL + "/api/applicationKey.saveApplicationKey",
                HttpMethod.POST);