From 7cbcf585e6d91ae89f7c3bba48966a96d86ad89f Mon Sep 17 00:00:00 2001 From: 44673626 <44673626@qq.com> Date: Thu, 18 Nov 2021 09:52:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=AA=E7=BB=93=E6=95=B0=E6=8D=AE=E7=9A=84?= =?UTF-8?q?=E5=AF=BC=E5=85=A5DTO=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../UnSettleAccountImportDto.cs | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/UnSettleAccounts/UnSettleAccountImportDto.cs b/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/UnSettleAccounts/UnSettleAccountImportDto.cs index b97de870..9a41e069 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/UnSettleAccounts/UnSettleAccountImportDto.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/UnSettleAccounts/UnSettleAccountImportDto.cs @@ -1,4 +1,5 @@ -using System; +using Magicodes.ExporterAndImporter.Core; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -13,59 +14,69 @@ namespace Win.Sfs.SettleAccount.Entities.SettleAccounts /// /// 期间 /// - public string Period { set; get; } + // public string Period { set; get; } /// /// 年份 /// + [ImporterHeader(Name = "年份")] public string SettleYear { set; get; } /// /// 年份 /// - public virtual string Year { set; get; } + //public virtual string Year { set; get; } /// /// KENEN号 /// + [ImporterHeader(Name = "KENN号")] public virtual string KENNCode { set; get; } /// /// 底盘号 /// + [ImporterHeader(Name = "底盘号")] public virtual string ChassisNumber { set; get; } /// /// 车型 /// + [ImporterHeader(Name = "车型")] public virtual string Model { set; get; } /// /// CP5A日期 /// + [ImporterHeader(Name = "CP5A日期")] public virtual DateTime CP5A { set; get; } /// /// CP7 /// + [ImporterHeader(Name = "CP7日期")] public virtual DateTime CP7 { set; get; } /// /// 零件号 /// + [ImporterHeader(Name = "零件号",FixAllSpace =true)] public virtual string MaterialCode { get; set; } /// /// 数量 /// + [ImporterHeader(Name = "数量")] public virtual decimal Qty { get; set; } /// /// 结算标识 /// - + [ImporterHeader(Name = "结算标识")] public virtual string SettlementID { get; set; } /// /// 结算供应商 /// + [ImporterHeader(Name = "结算供应商")] public virtual string SettlementSupplier { get; set; } /// /// 未结算原因 /// + [ImporterHeader(Name = "未结算原因")] public string UnsettledReason { get; set; } } }