From b5756a5a4a12b0b92707354c978589aee333ed38 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 14 五月 2024 00:29:55 +0800 Subject: [PATCH] 上料事务更新 --- Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs b/Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs index 098e54d..caf6f59 100644 --- a/Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs +++ b/Tiger.Model.Net/Entitys/WMS/MengQi/SNData_His.cs @@ -104,6 +104,30 @@ _customercode = value; } } + private string _DeliveryNo = null; + public string DeliveryNo + { + get + { + return _DeliveryNo; + } + set + { + _DeliveryNo = value; + } + } + private string _CustModel = null; + public string CustModel + { + get + { + return _CustModel; + } + set + { + _CustModel = value; + } + } } public class SNDataWhere @@ -111,5 +135,8 @@ public string strStartEnd { get; set; } public string model { get; set; } public string customerCode { get; set; } + public string deliveryNo { get; set; } + public string custParam1 { get; set; } + public string custParam2 { get; set; } } } -- Gitblit v1.9.3