From 5074d801673cc2ced137ffec663dee2168134ed5 Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Fri, 2 Feb 2024 10:52:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/Model/Model.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index d3e90202..a9281128 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -414982,6 +414982,8 @@ namespace Model private string _Status; + private System.Nullable _ADate; + public View_TransferDetail() { } @@ -415097,6 +415099,22 @@ namespace Model } } } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="aDate", Storage="_ADate", DbType="DateTime")] + public System.Nullable ADate + { + get + { + return this._ADate; + } + set + { + if ((this._ADate != value)) + { + this._ADate = value; + } + } + } } [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_WBS")]