Your Name
2023-09-20 49b60ab2581e89f17088da232e9a9efcc4aeebca
java110-interface/src/main/java/com/java110/intf/user/IQuestionAnswerTitleValueInnerServiceSMO.java
@@ -1,8 +1,8 @@
package com.java110.intf.user;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.questionAnswerTitleValue.QuestionAnswerTitleValueDto;
import com.java110.po.questionAnswerTitleValue.QuestionAnswerTitleValuePo;
import com.java110.dto.questionAnswer.QuestionAnswerTitleValueDto;
import com.java110.po.questionAnswer.QuestionAnswerTitleValuePo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -50,4 +50,10 @@
     */
    @RequestMapping(value = "/queryQuestionAnswerTitleValuesCount", method = RequestMethod.POST)
    int queryQuestionAnswerTitleValuesCount(@RequestBody QuestionAnswerTitleValueDto questionAnswerTitleValueDto);
    @RequestMapping(value = "/queryQuestionAnswerTitleValueResult", method = RequestMethod.POST)
    List<QuestionAnswerTitleValueDto> queryQuestionAnswerTitleValueResult(@RequestBody QuestionAnswerTitleValueDto questionAnswerTitleValueDto);
    @RequestMapping(value = "/queryQuestionAnswerTitleValueResultCount", method = RequestMethod.POST)
    List<QuestionAnswerTitleValueDto> queryQuestionAnswerTitleValueResultCount(@RequestBody QuestionAnswerTitleValueDto questionAnswerTitleValueDto);
}