From c2ac0830423d1ed8df1d92496de1878686844d32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Mon, 30 Oct 2023 09:24:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Elight.Entity/APPDto/Lawyer/LawyerArchivesDto.cs | 15 +++++++++++++-- Elight.Entity/AppMode/Lawyer/LawyerArchives.cs | 10 ++++++++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Elight.Entity/APPDto/Lawyer/LawyerArchivesDto.cs b/Elight.Entity/APPDto/Lawyer/LawyerArchivesDto.cs index 7920c31..670c557 100644 --- a/Elight.Entity/APPDto/Lawyer/LawyerArchivesDto.cs +++ b/Elight.Entity/APPDto/Lawyer/LawyerArchivesDto.cs @@ -12,8 +12,6 @@ namespace Elight.Entity.APPDto.Lawyer { [DataMember] public string? Id { get; set; } - [DataMember] - public string? lawyerservicesId { get; set; } /// /// 卷宗id /// @@ -35,6 +33,11 @@ namespace Elight.Entity.APPDto.Lawyer [DataMember] public string? lawyerId { get; set; } /// + /// 律师名字 + /// + [DataMember] + public string? lawyerName { get; set; } + /// /// 当事人姓名 /// [DataMember] @@ -94,6 +97,14 @@ namespace Elight.Entity.APPDto.Lawyer [DataMember] public string? createrId { get; set; } /// + /// 已缓存的文件计数 + /// + public int? downloadedCount { get; set; } + /// + /// 总的文件数计数 + /// + public int? jwCount { get; set; } + /// /// 是否删除:0:未删除、1:删除 /// [DataMember] diff --git a/Elight.Entity/AppMode/Lawyer/LawyerArchives.cs b/Elight.Entity/AppMode/Lawyer/LawyerArchives.cs index 4d79b33..c471f98 100644 --- a/Elight.Entity/AppMode/Lawyer/LawyerArchives.cs +++ b/Elight.Entity/AppMode/Lawyer/LawyerArchives.cs @@ -17,8 +17,6 @@ namespace Elight.Entity.AppMode.Lawyer [SugarColumn(IsPrimaryKey = true)] public string? Id { get; set; } [DataMember] - public string? lawyerservicesId { get; set; } - [DataMember] public string? unitcode { get; set; } [DataMember] public string? jzlbxxId { get; set; } @@ -55,6 +53,14 @@ namespace Elight.Entity.AppMode.Lawyer [DataMember] public string? createrId { get; set; } /// + /// 已缓存的文件计数 + /// + public int? downloadedCount { get; set; } + /// + /// 总的文件数计数 + /// + public int? jwCount { get; set; } + /// /// 是否删除:0:未删除、1:删除 /// [DataMember]