|
|
@@ -2,11 +2,17 @@ package com.java110.user.api;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.java110.dto.questionAnswer.QuestionAnswerDto;
|
|
|
+import com.java110.dto.questionAnswerTitle.QuestionAnswerTitleDto;
|
|
|
import com.java110.po.questionAnswer.QuestionAnswerPo;
|
|
|
+import com.java110.po.questionAnswerTitle.QuestionAnswerTitlePo;
|
|
|
import com.java110.user.bmo.questionAnswer.IDeleteQuestionAnswerBMO;
|
|
|
import com.java110.user.bmo.questionAnswer.IGetQuestionAnswerBMO;
|
|
|
import com.java110.user.bmo.questionAnswer.ISaveQuestionAnswerBMO;
|
|
|
import com.java110.user.bmo.questionAnswer.IUpdateQuestionAnswerBMO;
|
|
|
+import com.java110.user.bmo.questionAnswerTitle.IDeleteQuestionAnswerTitleBMO;
|
|
|
+import com.java110.user.bmo.questionAnswerTitle.IGetQuestionAnswerTitleBMO;
|
|
|
+import com.java110.user.bmo.questionAnswerTitle.ISaveQuestionAnswerTitleBMO;
|
|
|
+import com.java110.user.bmo.questionAnswerTitle.IUpdateQuestionAnswerTitleBMO;
|
|
|
import com.java110.utils.util.Assert;
|
|
|
import com.java110.utils.util.BeanConvertUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
@@ -28,6 +34,16 @@ public class QuestionAnswerApi {
|
|
|
@Autowired
|
|
|
private IGetQuestionAnswerBMO getQuestionAnswerBMOImpl;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private ISaveQuestionAnswerTitleBMO saveQuestionAnswerTitleBMOImpl;
|
|
|
+ @Autowired
|
|
|
+ private IUpdateQuestionAnswerTitleBMO updateQuestionAnswerTitleBMOImpl;
|
|
|
+ @Autowired
|
|
|
+ private IDeleteQuestionAnswerTitleBMO deleteQuestionAnswerTitleBMOImpl;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IGetQuestionAnswerTitleBMO getQuestionAnswerTitleBMOImpl;
|
|
|
+
|
|
|
/**
|
|
|
* 微信保存消息模板
|
|
|
*
|
|
|
@@ -114,4 +130,90 @@ public class QuestionAnswerApi {
|
|
|
questionAnswerDto.setObjTd(QuestionAnswerDto.QA_TYPE_COMMUNITY.endsWith(objType) ? communityId : storeId);
|
|
|
return getQuestionAnswerBMOImpl.get(questionAnswerDto);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 微信保存消息模板
|
|
|
+ *
|
|
|
+ * @param reqJson
|
|
|
+ * @return
|
|
|
+ * @serviceCode /questionAnswer/saveQuestionAnswerTitle
|
|
|
+ * @path /app/questionAnswer/saveQuestionAnswerTitle
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/saveQuestionAnswerTitle", method = RequestMethod.POST)
|
|
|
+ public ResponseEntity<String> saveQuestionAnswerTitle(@RequestBody JSONObject reqJson) {
|
|
|
+
|
|
|
+ Assert.hasKeyAndValue(reqJson, "qaId", "请求报文中未包含qaId");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "qaTitle", "请求报文中未包含qaTitle");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "titleType", "请求报文中未包含titleType");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "objType", "请求报文中未包含objType");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "seq", "请求报文中未包含seq");
|
|
|
+
|
|
|
+
|
|
|
+ QuestionAnswerTitlePo questionAnswerTitlePo = BeanConvertUtil.covertBean(reqJson, QuestionAnswerTitlePo.class);
|
|
|
+ return saveQuestionAnswerTitleBMOImpl.save(questionAnswerTitlePo);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 微信修改消息模板
|
|
|
+ *
|
|
|
+ * @param reqJson
|
|
|
+ * @return
|
|
|
+ * @serviceCode /questionAnswer/updateQuestionAnswerTitle
|
|
|
+ * @path /app/questionAnswer/updateQuestionAnswerTitle
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/updateQuestionAnswerTitle", method = RequestMethod.POST)
|
|
|
+ public ResponseEntity<String> updateQuestionAnswerTitle(@RequestBody JSONObject reqJson) {
|
|
|
+
|
|
|
+ Assert.hasKeyAndValue(reqJson, "qaId", "请求报文中未包含qaId");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "qaTitle", "请求报文中未包含qaTitle");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "titleType", "请求报文中未包含titleType");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "objType", "请求报文中未包含objType");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "seq", "请求报文中未包含seq");
|
|
|
+ Assert.hasKeyAndValue(reqJson, "titleId", "titleId不能为空");
|
|
|
+
|
|
|
+
|
|
|
+ QuestionAnswerTitlePo questionAnswerTitlePo = BeanConvertUtil.covertBean(reqJson, QuestionAnswerTitlePo.class);
|
|
|
+ return updateQuestionAnswerTitleBMOImpl.update(questionAnswerTitlePo);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 微信删除消息模板
|
|
|
+ *
|
|
|
+ * @param reqJson
|
|
|
+ * @return
|
|
|
+ * @serviceCode /questionAnswer/deleteQuestionAnswerTitle
|
|
|
+ * @path /app/questionAnswer/deleteQuestionAnswerTitle
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/deleteQuestionAnswerTitle", method = RequestMethod.POST)
|
|
|
+ public ResponseEntity<String> deleteQuestionAnswerTitle(@RequestBody JSONObject reqJson) {
|
|
|
+ Assert.hasKeyAndValue(reqJson, "communityId", "小区ID不能为空");
|
|
|
+
|
|
|
+ Assert.hasKeyAndValue(reqJson, "titleId", "titleId不能为空");
|
|
|
+
|
|
|
+
|
|
|
+ QuestionAnswerTitlePo questionAnswerTitlePo = BeanConvertUtil.covertBean(reqJson, QuestionAnswerTitlePo.class);
|
|
|
+ return deleteQuestionAnswerTitleBMOImpl.delete(questionAnswerTitlePo);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 微信删除消息模板
|
|
|
+ *
|
|
|
+ * @param communityId 小区ID
|
|
|
+ * @return
|
|
|
+ * @serviceCode /questionAnswer/queryQuestionAnswerTitle
|
|
|
+ * @path /app/questionAnswer/queryQuestionAnswerTitle
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/queryQuestionAnswerTitle", method = RequestMethod.GET)
|
|
|
+ public ResponseEntity<String> queryQuestionAnswerTitle(@RequestHeader(value = "store-id") String storeId,
|
|
|
+ @RequestParam(value = "communityId", required = false) String communityId,
|
|
|
+ @RequestParam(value = "objType") String objType,
|
|
|
+ @RequestParam(value = "page") int page,
|
|
|
+ @RequestParam(value = "row") int row) {
|
|
|
+ QuestionAnswerTitleDto questionAnswerTitleDto = new QuestionAnswerTitleDto();
|
|
|
+ questionAnswerTitleDto.setPage(page);
|
|
|
+ questionAnswerTitleDto.setRow(row);
|
|
|
+ questionAnswerTitleDto.setObjType(objType);
|
|
|
+ questionAnswerTitleDto.setObjId(QuestionAnswerDto.QA_TYPE_COMMUNITY.endsWith(objType) ? communityId : storeId);
|
|
|
+ return getQuestionAnswerTitleBMOImpl.get(questionAnswerTitleDto);
|
|
|
+ }
|
|
|
}
|