package com.hz.his.feign.service.phis; import com.hx.resultTool.Result; import com.hz.his.dto.doctorTime.DoctorTimeDto; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; import java.math.BigDecimal; /** * @ClassName SActivityController * @Description 活动规则 * @Author Wrh * @Date 2022/8/8 17:36 * @Version 1.0 */ @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "doctorTime") public interface SDoctorTimeService { /** * 获å–医生排ç列表 * @return Result */ @PostMapping(value = "/doctor/time/list") Result list(@RequestBody DoctorTimeDto dto); /** * 医生排çæ—¶é—´ä¿¡æ¯ * @return Result */ @PostMapping(value = "/doctor/time/info") Result info(@RequestBody DoctorTimeDto dto); /** * 判æ–医生排ç时间是å¦è¢«å 用 * @return Result */ @PostMapping(value = "/doctor/time/checkTimeIsHasAppointment") Result checkTimeIsHasAppointment(@RequestBody DoctorTimeDto dto); /** * 医生排ç时间详情 * @return Result */ @PostMapping(value = "/doctor/time/details") Result details(@RequestBody DoctorTimeDto dto); }