diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs index fffd853e..db6d348b 100644 --- a/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs +++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/Prices/PriceListDtoBase.cs @@ -107,7 +107,7 @@ public class PriceListExportDto /// 销售价格导入 /// [ImportProject(Name = SettleAccountModuleName.PriceList)] -[Importer(HeaderRowIndex = 22)] +[Importer(HeaderRowIndex = 21)] public class PriceListImportDto { /// @@ -135,25 +135,25 @@ public class PriceListImportDto /// /// 价格 /// - [ImporterHeader(Name = "Total Price")] + [ImporterHeader(Name = "Total Price (Old)")] public string TotalPrice { get; set; } /// /// 开始时间 /// - [ImporterHeader(Name = "Valid From")] + [ImporterHeader(Name = "*Valid From")] public string ValidFrom { get; set; } /// /// 结束时间 /// - [ImporterHeader(Name = "Valid To")] + [ImporterHeader(Name = "*Valid To")] public string ValidTo { get; set; } /// /// 客户编码 /// - [ImporterHeader(Name = "Plant")] + [ImporterHeader(Name = "*Plant")] public string Plant { get; set; } }