提交代码

This commit is contained in:
2024-01-26 15:19:11 +08:00
parent 0e2aa3bb4c
commit a39dd15a70
17 changed files with 1767 additions and 91 deletions
+313
View File
@@ -2345,6 +2345,9 @@ namespace Model
partial void InsertTransfer_Instrumentation(Transfer_Instrumentation instance);
partial void UpdateTransfer_Instrumentation(Transfer_Instrumentation instance);
partial void DeleteTransfer_Instrumentation(Transfer_Instrumentation instance);
partial void InsertTransfer_Piping(Transfer_Piping instance);
partial void UpdateTransfer_Piping(Transfer_Piping instance);
partial void DeleteTransfer_Piping(Transfer_Piping instance);
partial void InsertTransfer_ProjectSetup(Transfer_ProjectSetup instance);
partial void UpdateTransfer_ProjectSetup(Transfer_ProjectSetup instance);
partial void DeleteTransfer_ProjectSetup(Transfer_ProjectSetup instance);
@@ -8719,6 +8722,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Transfer_Piping> Transfer_Piping
{
get
{
return this.GetTable<Transfer_Piping>();
}
}
public System.Data.Linq.Table<Transfer_ProjectSetup> Transfer_ProjectSetup
{
get
@@ -368792,6 +368803,308 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Transfer_Piping")]
public partial class Transfer_Piping : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _ProjectId;
private string _PIPINGLINENUMBER;
private string _SYSTEM;
private string _Subsystem;
private string _TestPackage;
private System.Nullable<System.DateTime> _TestPackageSTART;
private System.Nullable<System.DateTime> _TestPackageFINISH;
private string _FINALStatus;
private string _PreTestFINISHED;
private string _FinalTestFINISHED;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnPIPINGLINENUMBERChanging(string value);
partial void OnPIPINGLINENUMBERChanged();
partial void OnSYSTEMChanging(string value);
partial void OnSYSTEMChanged();
partial void OnSubsystemChanging(string value);
partial void OnSubsystemChanged();
partial void OnTestPackageChanging(string value);
partial void OnTestPackageChanged();
partial void OnTestPackageSTARTChanging(System.Nullable<System.DateTime> value);
partial void OnTestPackageSTARTChanged();
partial void OnTestPackageFINISHChanging(System.Nullable<System.DateTime> value);
partial void OnTestPackageFINISHChanged();
partial void OnFINALStatusChanging(string value);
partial void OnFINALStatusChanged();
partial void OnPreTestFINISHEDChanging(string value);
partial void OnPreTestFINISHEDChanged();
partial void OnFinalTestFINISHEDChanging(string value);
partial void OnFinalTestFINISHEDChanged();
#endregion
public Transfer_Piping()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string Id
{
get
{
return this._Id;
}
set
{
if ((this._Id != value))
{
this.OnIdChanging(value);
this.SendPropertyChanging();
this._Id = value;
this.SendPropertyChanged("Id");
this.OnIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PIPINGLINENUMBER", DbType="NVarChar(50)")]
public string PIPINGLINENUMBER
{
get
{
return this._PIPINGLINENUMBER;
}
set
{
if ((this._PIPINGLINENUMBER != value))
{
this.OnPIPINGLINENUMBERChanging(value);
this.SendPropertyChanging();
this._PIPINGLINENUMBER = value;
this.SendPropertyChanged("PIPINGLINENUMBER");
this.OnPIPINGLINENUMBERChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SYSTEM", DbType="NVarChar(50)")]
public string SYSTEM
{
get
{
return this._SYSTEM;
}
set
{
if ((this._SYSTEM != value))
{
this.OnSYSTEMChanging(value);
this.SendPropertyChanging();
this._SYSTEM = value;
this.SendPropertyChanged("SYSTEM");
this.OnSYSTEMChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subsystem", DbType="NVarChar(50)")]
public string Subsystem
{
get
{
return this._Subsystem;
}
set
{
if ((this._Subsystem != value))
{
this.OnSubsystemChanging(value);
this.SendPropertyChanging();
this._Subsystem = value;
this.SendPropertyChanged("Subsystem");
this.OnSubsystemChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackage", DbType="NVarChar(50)")]
public string TestPackage
{
get
{
return this._TestPackage;
}
set
{
if ((this._TestPackage != value))
{
this.OnTestPackageChanging(value);
this.SendPropertyChanging();
this._TestPackage = value;
this.SendPropertyChanged("TestPackage");
this.OnTestPackageChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageSTART", DbType="DateTime")]
public System.Nullable<System.DateTime> TestPackageSTART
{
get
{
return this._TestPackageSTART;
}
set
{
if ((this._TestPackageSTART != value))
{
this.OnTestPackageSTARTChanging(value);
this.SendPropertyChanging();
this._TestPackageSTART = value;
this.SendPropertyChanged("TestPackageSTART");
this.OnTestPackageSTARTChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageFINISH", DbType="DateTime")]
public System.Nullable<System.DateTime> TestPackageFINISH
{
get
{
return this._TestPackageFINISH;
}
set
{
if ((this._TestPackageFINISH != value))
{
this.OnTestPackageFINISHChanging(value);
this.SendPropertyChanging();
this._TestPackageFINISH = value;
this.SendPropertyChanged("TestPackageFINISH");
this.OnTestPackageFINISHChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FINALStatus", DbType="NVarChar(50)")]
public string FINALStatus
{
get
{
return this._FINALStatus;
}
set
{
if ((this._FINALStatus != value))
{
this.OnFINALStatusChanging(value);
this.SendPropertyChanging();
this._FINALStatus = value;
this.SendPropertyChanged("FINALStatus");
this.OnFINALStatusChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreTestFINISHED", DbType="NVarChar(50)")]
public string PreTestFINISHED
{
get
{
return this._PreTestFINISHED;
}
set
{
if ((this._PreTestFINISHED != value))
{
this.OnPreTestFINISHEDChanging(value);
this.SendPropertyChanging();
this._PreTestFINISHED = value;
this.SendPropertyChanged("PreTestFINISHED");
this.OnPreTestFINISHEDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FinalTestFINISHED", DbType="NVarChar(50)")]
public string FinalTestFINISHED
{
get
{
return this._FinalTestFINISHED;
}
set
{
if ((this._FinalTestFINISHED != value))
{
this.OnFinalTestFINISHEDChanging(value);
this.SendPropertyChanging();
this._FinalTestFINISHED = value;
this.SendPropertyChanged("FinalTestFINISHED");
this.OnFinalTestFINISHEDChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Transfer_ProjectSetup")]
public partial class Transfer_ProjectSetup : INotifyPropertyChanging, INotifyPropertyChanged
{