New file |
| | |
| | | package com.hz.his.feign.service.phisAdmin; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.his.dto.appointment.AppointmentDto; |
| | | import com.hz.his.dto.treat.TreatAfterVideoDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | |
| | | /** |
| | | * mot扫码到访 |
| | | */ |
| | | @FeignClient(name="phis-service",contextId = "phis-visit-order") |
| | | public interface SVisitOrderService { |
| | | /** |
| | | * mot扫码到访 |
| | | */ |
| | | @RequestMapping("/visit/order/mot/scanCode") |
| | | Result scanCodeArrival(@RequestBody AppointmentDto appointmentDto); |
| | | } |