fhx
2024-08-12 a6a950766586db2d274a179904d9b3ea714a3b88
提交 | 用户 | age
ca20cb 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 org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8
9 /**
10  * 预约自动匹配service
11  * @USER: fhx
12  * @DATE: 2023/7/6
13  **/
14 @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-appointment-auto-mate")
15 public interface SPhipAppAutoMateService {
16
17     /** 自动匹配 - 混合项目 */
18     @PostMapping("/appointment/autoMate/addApply/blend")
19     Result addApplyBland(@RequestBody AppointmentAutoMateDto dto);
20 }