From fdf500e8d0362af17fa1d54d8364642d3ebb6259 Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Tue, 30 Jan 2024 09:35:23 +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 | 143 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 3c5ee1a4..29f8b692 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -9762,6 +9762,14 @@ namespace Model } } + public System.Data.Linq.Table View_TransferDetail + { + get + { + return this.GetTable(); + } + } + public System.Data.Linq.Table View_WBS { get @@ -414716,6 +414724,141 @@ namespace Model } } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_TransferDetail")] + public partial class View_TransferDetail + { + + private string _Projectid; + + private string _SystemName; + + private string _Subsystem; + + private string _TestPackage; + + private System.Nullable _SDate; + + private System.Nullable _FDate; + + private string _Status; + + public View_TransferDetail() + { + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Projectid", DbType="NVarChar(50)")] + public string Projectid + { + get + { + return this._Projectid; + } + set + { + if ((this._Projectid != value)) + { + this._Projectid = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemName", DbType="NVarChar(50)")] + public string SystemName + { + get + { + return this._SystemName; + } + set + { + if ((this._SystemName != value)) + { + this._SystemName = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subsystem", DbType="NVarChar(50)")] + public string Subsystem + { + get + { + return this._Subsystem; + } + set + { + if ((this._Subsystem != value)) + { + this._Subsystem = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackage", DbType="NVarChar(50)")] + public string TestPackage + { + get + { + return this._TestPackage; + } + set + { + if ((this._TestPackage != value)) + { + this._TestPackage = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="sDate", Storage="_SDate", DbType="DateTime")] + public System.Nullable SDate + { + get + { + return this._SDate; + } + set + { + if ((this._SDate != value)) + { + this._SDate = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Name="fDate", Storage="_FDate", DbType="DateTime")] + public System.Nullable FDate + { + get + { + return this._FDate; + } + set + { + if ((this._FDate != value)) + { + this._FDate = value; + } + } + } + + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="NVarChar(50)")] + public string Status + { + get + { + return this._Status; + } + set + { + if ((this._Status != value)) + { + this._Status = value; + } + } + } + } + [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_WBS")] public partial class View_WBS {