| | |
| | | import com.hz.his.dto.marketing.MarketActivityDto; |
| | | import com.hz.his.dto.user.UserTreatRecordDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | |
| | | **/ |
| | | @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-fdd") |
| | | public interface SPhipFddService { |
| | | |
| | | /** 授权免验证签署 */ |
| | | @PostMapping(value = "/fdd/authFreeVisa") |
| | | Result authFreeVisa(@RequestBody UserTreatRecordDto dto); |
| | | |
| | | /** 法大大签署模板列表 */ |
| | | @PostMapping(value = "/fdd/signTemplateList") |
| | |
| | | Result templateSignTask(@RequestBody UserTreatRecordDto dto); |
| | | |
| | | /** 电子病历 - 发起法大大签署任务 */ |
| | | @RequestMapping("/fdd/medicalRecords/signTask") |
| | | Result medicalRecordsSignTask(MultipartFile file, String id, String loginRoleId); |
| | | @RequestMapping(value="/fdd/medicalRecords/signTask",consumes = MediaType.MULTIPART_FORM_DATA_VALUE) |
| | | Result medicalRecordsSignTask(@RequestPart("file") MultipartFile file, @RequestParam("id") String id |
| | | , @RequestParam("loginRoleId") String loginRoleId); |
| | | |
| | | /** 处方单 - 发起法大大签署任务 */ |
| | | @RequestMapping("/fdd/prescription/signTask") |
| | | Result prescriptionSignTask(MultipartFile file, String id, String loginRoleId); |
| | | @RequestMapping(value="/fdd/prescription/signTask",consumes = MediaType.MULTIPART_FORM_DATA_VALUE) |
| | | Result prescriptionSignTask(@RequestPart("file") MultipartFile file, @RequestParam("id") String id |
| | | , @RequestParam("loginRoleId") String loginRoleId); |
| | | |
| | | |
| | | } |