| | |
| | | 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.ServiceConstant; |
| | | import com.java110.utils.util.Assert; |
| | | import com.java110.web.smo.activities.IAddActivitiesSMO; |
| | |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.web.client.RestTemplate; |
| | | |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | //Assert.hasKeyAndValue(paramIn, "xxx", "xxx"); |
| | | Assert.hasKeyAndValue(paramIn, "title", "必填,请填写业活动标题"); |
| | | Assert.hasKeyAndValue(paramIn, "communityId", "必填,请填写小区ID"); |
| | | Assert.hasKeyAndValue(paramIn, "typeCd", "必填,请选择活动类型"); |
| | | Assert.hasKeyAndValue(paramIn, "headerImg", "必填,请选择头部照片"); |
| | | Assert.hasKeyAndValue(paramIn, "context", "必填,请填写活动内容"); |
| | |
| | | @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("userId", result.getUserId()); |
| | | paramIn.put("userName", result.getUserName()); |
| | | |
| | | responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(), |
| | | ServiceConstant.SERVICE_API_URL + "/api/activities.saveActivities", |