From e3a5a26eded2aa9b704238ad021b0eef316ff678 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期五, 09 五月 2025 10:45:02 +0800 Subject: [PATCH] 增加退料单实体 --- Tiger.Model.Net/Entitys/Minsun/Interface/InterfaceEntity.cs | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Tiger.Model.Net/Entitys/Minsun/Interface/InterfaceEntity.cs b/Tiger.Model.Net/Entitys/Minsun/Interface/InterfaceEntity.cs index e7b0954..913f1bc 100644 --- a/Tiger.Model.Net/Entitys/Minsun/Interface/InterfaceEntity.cs +++ b/Tiger.Model.Net/Entitys/Minsun/Interface/InterfaceEntity.cs @@ -44,7 +44,7 @@ public string SourceCode { get; set; } public DateTime CreateDate { get; set; } public DateTime UpdateDate { get; set; } - public decimal QTY { get; set; } + public double QTY { get; set; } } public class iOutStoreInfo : iEntity @@ -57,7 +57,7 @@ public string LocationCode { get; set; } public DateTime CreateDate { get; set; } public DateTime UpdateDate { get; set; } - public decimal QTY { get; set; } + public double QTY { get; set; } } public class iReturnInfo : iEntity @@ -77,7 +77,7 @@ public string MaterialCode { get; set; } public string MaterialName { get; set; } public DateTime UpdateDate { get; set; } - public decimal QTY { get; set; } + public double QTY { get; set; } } public class iReceiptDtl @@ -89,7 +89,7 @@ public string DeliveryNo { get; set; } public string MaterialCode { get; set; } public string innerVendorCode { get; set; } - public decimal SCANQTY { get; set; } + public double SCANQTY { get; set; } } public class iReceiptInput : iEntity @@ -107,7 +107,7 @@ public string VenderCode { get; set; } public string VenderName { get; set; } public DateTime? UpdateDate { get; set; } - public decimal QTY { get; set; } + public double QTY { get; set; } } public class iDropdownlist : iEntity -- Gitblit v1.9.3