|
|
@ -19,6 +19,8 @@ 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.ProjectListResultDTO; |
|
|
|
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.result.PsychologistInfoResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.psychology.result.PsychologistResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.topic.form.TopicCloseFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.topic.form.TopicDetailFormDTO; |
|
|
@ -286,7 +288,6 @@ public interface PropertyFeignClient { |
|
|
|
@GetMapping(value = "property/epdc-app/comment/list", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EventCommentsResultDTO> listOfComments(TopicCommentsFormDTO formDto); |
|
|
|
|
|
|
|
|
|
|
|
/*** |
|
|
|
* 心理咨询师列表 |
|
|
|
* @param fromDTO |
|
|
@ -297,4 +298,14 @@ public interface PropertyFeignClient { |
|
|
|
@GetMapping(value = "news/epdc-app/psychology/listPsychiatrist", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<PsychologistResultDTO>> listPsychiatrist(@RequestBody PsychologistFormDTO fromDTO); |
|
|
|
|
|
|
|
/*** |
|
|
|
* 心理咨询师详细信息 |
|
|
|
* @param fromDTO |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<java.util.List < com.elink.esua.epdc.dto.epdc.result.PsychologistInfoResultDTO>> |
|
|
|
* @author zhangyuan |
|
|
|
* @date 2020/6/8 9:25 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "news/epdc-app/psychology/psychologistInfo", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<PsychologistInfoResultDTO> psychologistInfo(@RequestBody PsychologistInfoFormDTO fromDTO); |
|
|
|
|
|
|
|
} |
|
|
|