| | |
| | | import com.java110.user.bmo.questionAnswerTitleValue.IUpdateQuestionAnswerTitleValueBMO; |
| | | import com.java110.utils.util.Assert; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | | import com.java110.utils.util.StringUtil; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.ResponseEntity; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @path /app/questionAnswer/saveQuestionAnswer |
| | | */ |
| | | @RequestMapping(value = "/saveQuestionAnswer", method = RequestMethod.POST) |
| | | public ResponseEntity<String> saveQuestionAnswer(@RequestBody JSONObject reqJson) { |
| | | public ResponseEntity<String> saveQuestionAnswer(@RequestHeader(value = "store-id", required = false) String storeId, |
| | | @RequestBody JSONObject reqJson) { |
| | | |
| | | Assert.hasKeyAndValue(reqJson, "qaType", "请求报文中未包含qaType"); |
| | | Assert.hasKeyAndValue(reqJson, "qaName", "请求报文中未包含qaName"); |
| | |
| | | Assert.hasKeyAndValue(reqJson, "endTime", "请求报文中未包含endTime"); |
| | | Assert.hasKeyAndValue(reqJson, "objType", "请求报文中未包含objType"); |
| | | |
| | | if (QuestionAnswerDto.QA_TYPE_STORE.equals(reqJson.getString("objType"))) { |
| | | reqJson.put("objId", storeId); |
| | | } |
| | | Assert.hasKeyAndValue(reqJson, "objId", "请求报文中未包含objId"); |
| | | |
| | | QuestionAnswerPo questionAnswerPo = BeanConvertUtil.covertBean(reqJson, QuestionAnswerPo.class); |
| | | return saveQuestionAnswerBMOImpl.save(questionAnswerPo); |
| | |
| | | Assert.hasKeyAndValue(reqJson, "qaName", "请求报文中未包含qaName"); |
| | | Assert.hasKeyAndValue(reqJson, "startTime", "请求报文中未包含startTime"); |
| | | Assert.hasKeyAndValue(reqJson, "endTime", "请求报文中未包含endTime"); |
| | | Assert.hasKeyAndValue(reqJson, "objType", "请求报文中未包含objType"); |
| | | Assert.hasKeyAndValue(reqJson, "qaId", "qaId不能为空"); |
| | | |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryQuestionAnswer", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryQuestionAnswer( |
| | | @RequestHeader(value = "store-id") String storeId, |
| | | @RequestHeader(value = "store-id",required = false) String storeId, |
| | | @RequestParam(value = "communityId", required = false) String communityId, |
| | | @RequestParam(value = "objType") String objType, |
| | | @RequestParam(value = "objType", required = false) String objType, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row) { |
| | | QuestionAnswerDto questionAnswerDto = new QuestionAnswerDto(); |
| | | questionAnswerDto.setPage(page); |
| | | questionAnswerDto.setRow(row); |
| | | questionAnswerDto.setObjType(objType); |
| | | questionAnswerDto.setObjTd(QuestionAnswerDto.QA_TYPE_COMMUNITY.endsWith(objType) ? communityId : storeId); |
| | | if (!StringUtil.isEmpty(objType)) { |
| | | questionAnswerDto.setObjType(objType); |
| | | questionAnswerDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.equals(objType) ? communityId : storeId); |
| | | } else { |
| | | questionAnswerDto.setObjIds(new String[]{storeId, communityId}); |
| | | } |
| | | return getQuestionAnswerBMOImpl.get(questionAnswerDto); |
| | | } |
| | | |
| | |
| | | questionAnswerTitleDto.setPage(page); |
| | | questionAnswerTitleDto.setRow(row); |
| | | questionAnswerTitleDto.setObjType(objType); |
| | | questionAnswerTitleDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.endsWith(objType) ? communityId : storeId); |
| | | questionAnswerTitleDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.equals(objType) ? communityId : storeId); |
| | | return getQuestionAnswerTitleBMOImpl.get(questionAnswerTitleDto); |
| | | } |
| | | |
| | | /** |
| | | * 微信保存消息模板 |
| | | * @serviceCode /questionAnswer/saveQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/saveQuestionAnswerTitleValue |
| | | * |
| | | * @param reqJson |
| | | * @return |
| | | * @serviceCode /questionAnswer/saveQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/saveQuestionAnswerTitleValue |
| | | */ |
| | | @RequestMapping(value = "/saveQuestionAnswerTitleValue", method = RequestMethod.POST) |
| | | public ResponseEntity<String> saveQuestionAnswerTitleValue(@RequestBody JSONObject reqJson) { |
| | |
| | | |
| | | /** |
| | | * 微信修改消息模板 |
| | | * @serviceCode /questionAnswer/updateQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/updateQuestionAnswerTitleValue |
| | | * |
| | | * @param reqJson |
| | | * @return |
| | | * @serviceCode /questionAnswer/updateQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/updateQuestionAnswerTitleValue |
| | | */ |
| | | @RequestMapping(value = "/updateQuestionAnswerTitleValue", method = RequestMethod.POST) |
| | | public ResponseEntity<String> updateQuestionAnswerTitleValue(@RequestBody JSONObject reqJson) { |
| | |
| | | |
| | | /** |
| | | * 微信删除消息模板 |
| | | * @serviceCode /questionAnswer/deleteQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/deleteQuestionAnswerTitleValue |
| | | * |
| | | * @param reqJson |
| | | * @return |
| | | * @serviceCode /questionAnswer/deleteQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/deleteQuestionAnswerTitleValue |
| | | */ |
| | | @RequestMapping(value = "/deleteQuestionAnswerTitleValue", method = RequestMethod.POST) |
| | | public ResponseEntity<String> deleteQuestionAnswerTitleValue(@RequestBody JSONObject reqJson) { |
| | |
| | | |
| | | /** |
| | | * 微信删除消息模板 |
| | | * @serviceCode /questionAnswer/queryQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/queryQuestionAnswerTitleValue |
| | | * |
| | | * @param communityId 小区ID |
| | | * @return |
| | | * @serviceCode /questionAnswer/queryQuestionAnswerTitleValue |
| | | * @path /app/questionAnswer/queryQuestionAnswerTitleValue |
| | | */ |
| | | @RequestMapping(value = "/queryQuestionAnswerTitleValue", method = RequestMethod.GET) |
| | | public ResponseEntity<String> queryQuestionAnswerTitleValue(@RequestHeader(value = "store-id") String storeId, |
| | |
| | | questionAnswerTitleValueDto.setPage(page); |
| | | questionAnswerTitleValueDto.setRow(row); |
| | | questionAnswerTitleValueDto.setObjType(objType); |
| | | questionAnswerTitleValueDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.endsWith(objType) ? communityId : storeId); |
| | | questionAnswerTitleValueDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.equals(objType) ? communityId : storeId); |
| | | return getQuestionAnswerTitleValueBMOImpl.get(questionAnswerTitleValueDto); |
| | | } |
| | | } |