fhx
2024-04-08 a0c2b350f56cd4a8bdc6891420253a13677aff87
提交 | 用户 | age
f282fa 1 package com.hz.his.feign.service.platform.appointment;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.appointment.AppointmentAutoMateDto;
5 import com.hz.his.dto.appointment.AppointmentCrmAddDto;
6 import org.springframework.cloud.openfeign.FeignClient;
7 import org.springframework.web.bind.annotation.PostMapping;
8 import org.springframework.web.bind.annotation.RequestBody;
9
10 /**
11  * 预约自动匹配service
12  * @USER: fhx
13  * @DATE: 2023/7/6
14  **/
15 @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-appointment-auto-mate")
16 public interface SPhipAppAutoMateService {
17
18     /** 自动匹配 - 混合项目 */
19     @PostMapping("/appointment/autoMate/addApply/blend")
20     Result addApplyBland(@RequestBody AppointmentAutoMateDto dto);
21 }