From 1dd71cff8b3b5a3a6edbdc5b5288a0ff7dbe10a5 Mon Sep 17 00:00:00 2001 From: zhaoxinyu Date: Wed, 20 Dec 2023 16:53:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Entities/BQ/Dtos/INVOICE_GRP_DTO.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs index 574a4a12..5d5319fb 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs @@ -31,6 +31,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos /// [Display(Name = "未税金额")] public decimal Amt { get; set; } + /// ///税后金额 /// @@ -70,6 +71,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos [Display(Name = "导入时间")] public string LastModificationTime { get; set; } + [Display(Name = "备注")] + public string FileName { get; set; } } @@ -170,7 +173,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos [ExporterHeader(DisplayName = "开票日期")] public string CreationTime { get; set; } - + [ExporterHeader(DisplayName = "备注")] + public string FileName { get; set; } }