fhx
2024-04-16 8bb9c77d61c0d20e8a06e9185bf0a89a16dd6be2
提交 | 用户 | age
27843e 1 package com.hz.his.feign.service.platform;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.appointment.AppointmentCrmAddDto;
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  * @USER: fhx
11  * @DATE: 2023/7/6
12  **/
13 @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-appointment")
14 public interface SPhipAppointmentService {
15
16     /** CRM预约 */
17     @PostMapping("/appointment/crm/app")
18     Result crmApp(@RequestBody AppointmentCrmAddDto dto);
19 }