Your Name
2023-05-18 e8b49b7e925eecd7fc8415dfdbcf1fd4a8c9648f
java110-interface/src/main/java/com/java110/intf/user/IQuestionAnswerTitleValueInnerServiceSMO.java
@@ -1,7 +1,7 @@
package com.java110.intf.user;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.questionAnswerTitleValue.QuestionAnswerTitleValueDto;
import com.java110.dto.questionAnswer.QuestionAnswerTitleValueDto;
import com.java110.po.questionAnswerTitleValue.QuestionAnswerTitleValuePo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
@@ -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);
}