From 52e14bf30c5ce0f5ec90db0b1410295fe19b62e8 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期一, 12 五月 2025 20:30:57 +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