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 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E5=86=85=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) From 624104721408f581a56ca34b1a84915f2bf36409 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:28 +0800 Subject: [PATCH 2/2] =?UTF-8?q?state=E8=AE=BE=E7=BD=AE=E4=B8=BA=E5=8F=AF?= =?UTF-8?q?=E7=A9=BA=EF=BC=88=E4=BE=BF=E4=BA=8E=E5=89=8D=E7=AB=AF=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E6=89=80=E6=9C=89=E6=95=B0=E6=8D=AE=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Logic/Model/App_LawyerServicesInput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Elight.Logic/Model/App_LawyerServicesInput.cs b/Elight.Logic/Model/App_LawyerServicesInput.cs index ebaea99..1b1aa1d 100644 --- a/Elight.Logic/Model/App_LawyerServicesInput.cs +++ b/Elight.Logic/Model/App_LawyerServicesInput.cs @@ -81,6 +81,6 @@ namespace Elight.Logic /// 0:待办理,1:同意 ,2:拒绝 /// [DataMember] - public int state { get; set; } + public int? state { get; set; } } }