old mode 100644
new mode 100755
| | |
| | | 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; |
| | |
| | | */ |
| | | @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); |
| | | } |