wuxw
2019-10-02 ea4e931b3e06e4abcd31d74de9e90fa0a8998f3a
WebService/src/main/java/com/java110/web/smo/notice/impl/AddNoticeSMOImpl.java
@@ -1,9 +1,9 @@
package com.java110.web.smo.notice.impl;
import com.alibaba.fastjson.JSONObject;
import com.java110.common.constant.PrivilegeCodeConstant;
import com.java110.common.constant.ServiceConstant;
import com.java110.common.util.Assert;
import com.java110.utils.constant.PrivilegeCodeConstant;
import com.java110.utils.constant.ServiceConstant;
import com.java110.utils.util.Assert;
import com.java110.web.smo.notice.IAddNoticeSMO;
import org.springframework.web.client.RestTemplate;
import com.java110.core.context.IPageData;
@@ -30,13 +30,14 @@
        //Assert.hasKeyAndValue(paramIn, "xxx", "xxx");
        Assert.hasKeyAndValue(paramIn, "title", "必填,请填写标题");
Assert.hasKeyAndValue(paramIn, "noticeTypeCd", "必填,请选择公告类型");
Assert.hasKeyAndValue(paramIn, "context", "必填,请填写公告内容");
Assert.hasKeyAndValue(paramIn, "startTime", "必选,请填写开始时间 2019-01-02");
        Assert.hasKeyAndValue(paramIn, "noticeTypeCd", "必填,请选择公告类型");
        Assert.hasKeyAndValue(paramIn, "context", "必填,请填写公告内容");
        Assert.hasKeyAndValue(paramIn, "startTime", "必选,请填写开始时间 ");
        Assert.hasKeyAndValue(paramIn, "endTime", "必选,请填写结束时间 ");
        super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.AGENT_HAS_LIST_NOTICE);
        super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.HAS_LIST_NOTICE);
    }
@@ -45,6 +46,8 @@
        ResponseEntity<String> responseEntity = null;
        super.validateStoreStaffCommunityRelationship(pd, restTemplate);
        paramIn.put("userId", pd.getUserId());
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                ServiceConstant.SERVICE_API_URL + "/api/notice.saveNotice",
                HttpMethod.POST);