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