fhx
2024-08-26 ce0dc32dcecbe1cf19d63c7bed1a87a90191f2ed
提交 | 用户 | age
592e4c 1 package com.hz.his.feign.service.platform.treat;
F 2
3 import com.hx.resultTool.Result;
d1b09a 4 import com.hz.his.dto.treat.TreatSingleQueryDto;
592e4c 5 import org.springframework.cloud.openfeign.FeignClient;
F 6 import org.springframework.web.bind.annotation.RequestBody;
7 import org.springframework.web.bind.annotation.RequestMapping;
8
9 /**
10  * 治疗单数据
11  * @USER: fhx
12  * @DATE: 2024/8/6
13  **/
14 @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-treat-data")
15 public interface SPhipTreatDataService {
16
17     /** 治疗单列表 */
18     @RequestMapping(value = "/treat/single/data/list")
d1b09a 19     Result list(@RequestBody TreatSingleQueryDto dto);
592e4c 20
F 21     /** 治疗单详情 */
22     @RequestMapping(value = "/treat/single/data/detail")
d1b09a 23     Result detail(@RequestBody TreatSingleQueryDto dto);
592e4c 24
F 25     /** 治疗单操作日志 */
26     @RequestMapping(value = "/treat/single/data/log/list")
d1b09a 27     Result logList(@RequestBody TreatSingleQueryDto dto);
592e4c 28
F 29 }