| | |
| | | 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.question.QuestionAnswerTitleValueDto; |
| | | import com.java110.po.question.QuestionAnswerTitleValuePo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.user-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "user-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/questionAnswerTitleValueApi") |
| | | public interface IQuestionAnswerTitleValueInnerServiceSMO { |
| | | |
| | |
| | | |
| | | @RequestMapping(value = "/queryQuestionAnswerTitleValueResult", method = RequestMethod.POST) |
| | | List<QuestionAnswerTitleValueDto> queryQuestionAnswerTitleValueResult(@RequestBody QuestionAnswerTitleValueDto questionAnswerTitleValueDto); |
| | | |
| | | @RequestMapping(value = "/queryQuestionAnswerTitleValueResultCount", method = RequestMethod.POST) |
| | | List<QuestionAnswerTitleValueDto> queryQuestionAnswerTitleValueResultCount(@RequestBody QuestionAnswerTitleValueDto questionAnswerTitleValueDto); |
| | | } |