fwq
2023-07-05 b89aea13a5e654587922fcd451350524e67daefe
提交 | 用户 | age
fd81ad 1 package com.hz.his.feign.service.phis;
W 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.doctorTime.DoctorTimeDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.PostMapping;
7 import org.springframework.web.bind.annotation.RequestBody;
8 import org.springframework.web.bind.annotation.RequestParam;
9
10 import java.math.BigDecimal;
11
12 /**
13  * @ClassName SActivityController
14  * @Description 活动规则
15  * @Author Wrh
16  * @Date 2022/8/8 17:36
17  * @Version 1.0
18  */
19 @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "doctorTime")
20 public interface SDoctorTimeService {
21
22     /**
23      * 获取医生排班列表
24      * @return Result
25      */
26     @PostMapping(value = "/doctor/time/list")
27     Result list(@RequestBody DoctorTimeDto dto);
28
29
30 }