提交 | 用户 | age
|
ec458a
|
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 |
} |