package com.hz.his.feign.service.platform.appointment;
|
|
import com.hx.resultTool.Result;
|
import com.hz.his.dto.appointment.AppointmentAutoMateDto;
|
import com.hz.his.dto.appointment.AppointmentCrmAddDto;
|
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);
|
}
|