|
@ -19,7 +19,6 @@ import com.elink.esua.epdc.dto.project.form.ProjectScoreFormDTO; |
|
|
import com.elink.esua.epdc.dto.project.result.ProjectDetailResultDTO; |
|
|
import com.elink.esua.epdc.dto.project.result.ProjectDetailResultDTO; |
|
|
import com.elink.esua.epdc.dto.project.result.ProjectListResultDTO; |
|
|
import com.elink.esua.epdc.dto.project.result.ProjectListResultDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologistFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologistFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologistInfoFormDTO; |
|
|
|
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologyAnswerFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologyAnswerFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologyQuestionFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.form.PsychologyQuestionFormDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.result.PsychologistInfoResultDTO; |
|
|
import com.elink.esua.epdc.dto.psychology.result.PsychologistInfoResultDTO; |
|
@ -36,6 +35,7 @@ import com.elink.esua.epdc.feign.fallback.PropertyFeignClientFallback; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.http.MediaType; |
|
|
import org.springframework.http.MediaType; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
|
import org.springframework.web.bind.annotation.PathVariable; |
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
|
|
|
|
@ -304,13 +304,13 @@ public interface PropertyFeignClient { |
|
|
|
|
|
|
|
|
/*** |
|
|
/*** |
|
|
* 心理咨询师详细信息 |
|
|
* 心理咨询师详细信息 |
|
|
* @param fromDTO |
|
|
* @param psychologistId |
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.epdc.result.PsychologistInfoResultDTO>> |
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.epdc.result.PsychologistInfoResultDTO>> |
|
|
* @author zhangyuan |
|
|
* @author zhangyuan |
|
|
* @date 2020/6/8 9:25 |
|
|
* @date 2020/6/8 9:25 |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping(value = "property/epdc-app/psychology/psychologistInfo", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
@GetMapping(value = "property/epdc-app/psychology/psychologistInfo/{psychologistId}", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
Result<PsychologistInfoResultDTO> psychologistInfo(@RequestBody PsychologistInfoFormDTO fromDTO); |
|
|
Result<PsychologistInfoResultDTO> psychologistInfo(@PathVariable("psychologistId") String psychologistId); |
|
|
|
|
|
|
|
|
/*** |
|
|
/*** |
|
|
* 提交心理咨询问题 |
|
|
* 提交心理咨询问题 |
|
|