提交 | 用户 | age
|
910975
|
1 |
package com.hz.his.feign.service.phis; |
C |
2 |
|
|
3 |
import com.hx.resultTool.Result; |
|
4 |
import com.hz.his.vo.appointment.AppointmentProjectFindVo; |
|
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 |
* @author CJH |
|
11 |
**/ |
|
12 |
@FeignClient(name="phis-provider",path = "/p-his-data",contextId = "read-appointment") |
|
13 |
public interface SAppointmentService { |
|
14 |
|
|
15 |
/** 获取用户时间内预约的项目 */ |
|
16 |
@PostMapping("/appointment/user/project/list") |
|
17 |
Result userAppointmentProjectList(@RequestBody AppointmentProjectFindVo appointmentProjectFindVo); |
|
18 |
|
|
19 |
|
|
20 |
} |