From cabed6fdff0fe373490c1eff9c7532c07ba2c5e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=BD=87=E9=98=B3?= Date: Mon, 23 Oct 2023 17:49:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 24Hour/Controllers/Common/LawyerArchivesController.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/24Hour/Controllers/Common/LawyerArchivesController.cs b/24Hour/Controllers/Common/LawyerArchivesController.cs index 7539aba..ec4528d 100644 --- a/24Hour/Controllers/Common/LawyerArchivesController.cs +++ b/24Hour/Controllers/Common/LawyerArchivesController.cs @@ -330,10 +330,11 @@ namespace _24Hour.Controllers.Common return result; } /// - /// 从2.0系统查询案件信息(未完成) + /// 从2.0系统查询案件信息(假数据) /// /// /// + /// 接口,还没有确定好这个接口返回的数据的具体格式 [HttpGet] [Route("QueryCaseFromtwenty")] public Task QueryCaseFromtwenty(string? bmsah, string? name, string? casename) @@ -350,10 +351,11 @@ namespace _24Hour.Controllers.Common return Task.FromResult(result); } /// - /// 从2.0系统查询卷宗信息(未完成) + /// 从2.0系统查询卷宗信息(假数据) /// /// /// + /// 数据的返回格式已确定,内容时真实数据经过修改的 [HttpGet] [Route("QueryFileFromtwenty")] public Task> QueryFileFromtwenty(string bmsah) @@ -393,6 +395,9 @@ namespace _24Hour.Controllers.Common /// /// /// + /// + /// Get 把从QueryFileFromtwenty 接口获取的数据返回到这里 + /// [HttpPost] [Route("AddArchivesInfo")] public async Task> AddArchivesInfo(JZJBXXDto dto)