cmg
2024-04-30 314a4b858417df3d0e97049c3bf36e91cdf228ee
提交 | 用户 | 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  **/
314a4b 13 @FeignClient(name="phi-platform-user",path = "/phip",contextId = "phip-appointment")
27843e 14 public interface SPhipAppointmentService {
F 15
16     /** CRM预约 */
17     @PostMapping("/appointment/crm/app")
18     Result crmApp(@RequestBody AppointmentCrmAddDto dto);
19 }