提交 | 用户 | age
|
fc93a1
|
1 |
package com.hz.his.feign.service.platform; |
b2200d
|
2 |
|
W |
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.dto.appointment.AppointmentDto; |
|
5 |
import com.hz.his.dto.treat.TreatAfterVideoDto; |
|
6 |
import org.springframework.cloud.openfeign.FeignClient; |
|
7 |
import org.springframework.web.bind.annotation.RequestBody; |
|
8 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
9 |
|
|
10 |
/** |
|
11 |
* mot扫码到访 |
|
12 |
*/ |
45a801
|
13 |
@FeignClient(name="phi-platform-service",path = "/phip",contextId = "phis-visit-order") |
b2200d
|
14 |
public interface SVisitOrderService { |
W |
15 |
/** |
|
16 |
* mot扫码到访 |
|
17 |
*/ |
|
18 |
@RequestMapping("/visit/order/mot/scanCode") |
|
19 |
Result scanCodeArrival(@RequestBody AppointmentDto appointmentDto); |
|
20 |
} |