New file |
| | |
| | | package com.hz.crm.feign; |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.crm.dto.PageDto; |
| | | import com.hz.crm.dto.coupon.CouponGoodsDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | | */ |
| | | @FeignClient(name="crm-platform-service",path = "/crm-platform",contextId = "crm-doctorTime") |
| | | public interface FDoctorTimeService { |
| | | |
| | | @PostMapping(value = "/doctor/time/sync") |
| | | Result syncDoctorTime( @RequestBody(required = false) PageDto dto); |
| | | |
| | | } |