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]