| | |
| | | /** |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | | */ |
| | | @FeignClient(name="phis-provider",path = "/p-his-data",contextId = "consumables") |
| | | @FeignClient(name="phi-platform-user",path = "/p-his-data",contextId = "consumables") |
| | | public interface SConsumablesService { |
| | | |
| | | /** |
| | |
| | | */ |
| | | @PostMapping(value = "/consumables/coupon/list") |
| | | Result getConsumablesCouponList(@RequestBody PageDto pageDto); |
| | | |
| | | /** 检查优惠券商品是否可购买 */ |
| | | @PostMapping(value = "/check/consumables/coupon/isBuy") |
| | | Result checkConsumablesCouponIsBuy(@RequestBody ConsumablesDto dto); |
| | | } |