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); }