| | |
| | | @FeignClient(name="phi-platform-service",path = "/phip",contextId = "phip-fdd") |
| | | public interface SPhipFddService { |
| | | |
| | | /** 查询用户法大大功能授权数据 */ |
| | | @PostMapping(value = "/fdd/userFddAuthData") |
| | | Result userFddAuthData(@RequestBody FddDto dto); |
| | | |
| | | /** 法大大授权认证链接 */ |
| | | @PostMapping(value = "/fdd/authUrl") |
| | | Result fddAuthUrl(@RequestBody FddDto dto); |
| | | |
| | | /** 授权免验证签署 */ |
| | | @PostMapping(value = "/fdd/authFreeVisa") |
| | | Result authFreeVisa(@RequestBody FddDto dto); |
| | |
| | | /** 法大大签署模板列表 */ |
| | | @PostMapping(value = "/fdd/signTemplateList") |
| | | Result signTemplateList(@RequestBody PageDto dto); |
| | | |
| | | /** 法大大授权认证链接 */ |
| | | @PostMapping(value = "/fdd/authUrl") |
| | | Result fddAuthUrl(@RequestBody FddDto dto); |
| | | |
| | | /** 发起治疗同意书签署任务 */ |
| | | @PostMapping(value = "/fdd/template/signTask") |
| | |
| | | /** 电子病历 - 发起法大大签署任务 */ |
| | | @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); |
| | | , @RequestParam("loginRoleId") String loginRoleId, @RequestParam("redirectUrl")String redirectUrl); |
| | | |
| | | /** 处方单 - 发起法大大签署任务 */ |
| | | @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); |
| | | , @RequestParam("loginRoleId") String loginRoleId, @RequestParam("redirectUrl")String redirectUrl); |
| | | |
| | | |
| | | } |