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