fhx
2024-03-06 b8bf7a04a5f8a6756222d90a70ffbbcf3f047f82
1.修改
1个文件已修改
16 ■■■■■ 已修改文件
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipFddService.java 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
phis-feign/src/main/java/com/hz/his/feign/service/platform/SPhipFddService.java
@@ -18,6 +18,14 @@
@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);
@@ -25,10 +33,6 @@
    /** 法大大签署模板列表 */
    @PostMapping(value = "/fdd/signTemplateList")
    Result signTemplateList(@RequestBody PageDto dto);
    /** 法大大授权认证链接 */
    @PostMapping(value = "/fdd/authUrl")
    Result fddAuthUrl(@RequestBody FddDto dto);
    /** 发起治疗同意书签署任务 */
    @PostMapping(value = "/fdd/template/signTask")
@@ -41,12 +45,12 @@
    /** 电子病历 - 发起法大大签署任务 */
    @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);
}