From 78c1f87d61d1411356a422ab841afde67342d228 Mon Sep 17 00:00:00 2001
From: wangwh <2397901735@qq.com>
Date: Wed, 04 Sep 2024 20:52:15 +0800
Subject: [PATCH] 1、事项登记、详情查询接口 2、ocr识别文字接口 3、办理流转-查询下属人员、选择经办人、获取工作人员信息、添加办理反馈、获取办理反馈信息、修改办理反馈信息 4、督办-添加督办、回复督办、查询督办列表 5、查询评价
---
dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/SysClient.java | 33 +++++++++++++++++++++++++++------
1 files changed, 27 insertions(+), 6 deletions(-)
diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/SysClient.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/SysClient.java
index 748a91d..535beed 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/SysClient.java
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/SysClient.java
@@ -1,10 +1,12 @@
package cn.huge.module.client.api;
import cn.huge.base.common.bo.ReturnBO;
+import cn.huge.module.sys.dto.FileTypeTermsDTO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*;
import java.util.List;
+import java.util.Map;
/**
* @title: 系统公共服务微服务调用接口
@@ -19,18 +21,37 @@
/**
* 附件中心-根据多个所属编号查询附件并根据先根据ownerId再根据附件类型分组
* @url {ctx}/api/v1/fileInfo/listTypeInfoByOwnerIds?ownerIds=
- * @param ownerIdList 所属业务编号
+ * @param term 所属业务编号
* @return ReturnBO
*/
- @GetMapping("/api/client/fileInfo/listIdTypeInfoByOwnerIdList")
- ReturnBO listTypeInfoByOwnerIdList(@RequestParam(value = "ownerIdList") List<String> ownerIdList);
+ @PostMapping("/api/client/fileInfo/listIdTypeInfoByOwnerIdList")
+ ReturnBO listTypeInfoByOwnerIdList(@RequestBody Map<String, Object> term, @RequestParam(value = "mainId") String mainId);
/**
* 附件中心-根据多个所属编号查询附件
* @url {ctx}/api/v1/fileInfo/listInfoByOwnerIdList?ownerIds=
- * @param ownerIdList 所属业务编号
+ * @param term 所属业务编号
* @return ReturnBO
*/
- @GetMapping("/api/client/fileInfo/listInfoByOwnerIdList")
- ReturnBO listInfoByOwnerIdList(@RequestParam(value = "ownerIdList") List<String> ownerIdList);
+ @PostMapping("/api/client/fileInfo/listInfoByOwnerIdList")
+ ReturnBO listInfoByOwnerIdList(@RequestBody Map<String, Object> term, @RequestParam(value = "mainId") String mainId);
+
+ /**
+ * 附件中心-根据多个所属编号查询附件
+ * @url {ctx}/api/v1/fileInfo/listInfoByOwnerIdList?ownerIds=
+ * @param limitTable 表名
+ * @param limitType 时限类型
+ * @return ReturnBO
+ */
+ @GetMapping("/api/client/syTimeLimit/getTimeLimit")
+ ReturnBO getTimeLimit(@RequestParam String limitTable, @RequestParam(value = "limitType") String limitType);
+
+ /**
+ * 根据条件删除附件关系
+ * @url {ctx}/api/v1/fileRelate/removeFileRelate
+ * @param fileTypeTermsDTO 条件
+ * @return Object
+ */
+ @PostMapping("/api/client/fileRelate/removeFileRelate")
+ ReturnBO removeFileRelate(@RequestBody FileTypeTermsDTO fileTypeTermsDTO);
}
--
Gitblit v1.8.0