fwq
2023-11-14 557241a4e05dfb0fd88246602b74fbffd7bc0c63
提交 | 用户 | age
fb4dba 1 package com.hz.his.feign.service.phisAdmin;
F 2
3 import com.hx.resultTool.Result;
4 import com.hz.his.dto.treat.TreatAfterVideoDto;
5 import org.springframework.cloud.openfeign.FeignClient;
6 import org.springframework.web.bind.annotation.RequestBody;
7 import org.springframework.web.bind.annotation.RequestMapping;
8 import org.springframework.web.bind.annotation.RequestParam;
9
10 /**
11  * 术后视频
12  */
13 @FeignClient(name="phis-service",contextId = "phis-treat-after-video")
14 public interface STreatService {
15     /**
16      * 术后视频查询接口
17      */
18     @RequestMapping("/foreign/treat/after/video/list")
19     Result treatAfterVideoList(@RequestBody TreatAfterVideoDto treatAfterVideoDto);
20 }