From 8dbd8e7b80564fcf165a089be58be68084bc8093 Mon Sep 17 00:00:00 2001 From: shanj <18996038927@163.com> Date: Sun, 24 Sep 2023 01:44:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=BC=98=E5=8C=96=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Db/Product/Skuoptimizationhistory.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/BBWYB.Server.Model/Db/Product/Skuoptimizationhistory.cs b/BBWYB.Server.Model/Db/Product/Skuoptimizationhistory.cs index dd3bf12..8d1fde0 100644 --- a/BBWYB.Server.Model/Db/Product/Skuoptimizationhistory.cs +++ b/BBWYB.Server.Model/Db/Product/Skuoptimizationhistory.cs @@ -34,6 +34,18 @@ namespace BBWYB.Server.Model.Db [Column(StringLength = 50)] public string SkuId { get; set; } + /// + /// 上次采购单价 + /// + [Column(DbType = "decimal(18,2)", IsNullable = true)] + public decimal? LastPurchasePrice { get; set; } = 0.0M; + + /// + /// 本次采购单价 + /// + [Column(DbType = "decimal(18,2)", IsNullable = true)] + public decimal? CurrentPurchasePrice { get; set; } = 0.0M; + } }