移交修改
This commit is contained in:
@@ -391581,6 +391581,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CompleteTime;
|
||||
|
||||
private string _Installation;
|
||||
|
||||
private string _Debugging;
|
||||
|
||||
private string _Acceptancecheck;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -391605,6 +391611,12 @@ namespace Model
|
||||
partial void OnFINAL_StatusChanged();
|
||||
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompleteTimeChanged();
|
||||
partial void OnInstallationChanging(string value);
|
||||
partial void OnInstallationChanged();
|
||||
partial void OnDebuggingChanging(string value);
|
||||
partial void OnDebuggingChanged();
|
||||
partial void OnAcceptancecheckChanging(string value);
|
||||
partial void OnAcceptancecheckChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Firefighting()
|
||||
@@ -391812,6 +391824,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Installation", DbType="NVarChar(50)")]
|
||||
public string Installation
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Installation;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Installation != value))
|
||||
{
|
||||
this.OnInstallationChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Installation = value;
|
||||
this.SendPropertyChanged("Installation");
|
||||
this.OnInstallationChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Debugging", DbType="NVarChar(50)")]
|
||||
public string Debugging
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Debugging;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Debugging != value))
|
||||
{
|
||||
this.OnDebuggingChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Debugging = value;
|
||||
this.SendPropertyChanged("Debugging");
|
||||
this.OnDebuggingChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Acceptancecheck", DbType="NVarChar(50)")]
|
||||
public string Acceptancecheck
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Acceptancecheck;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Acceptancecheck != value))
|
||||
{
|
||||
this.OnAcceptancecheckChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Acceptancecheck = value;
|
||||
this.SendPropertyChanged("Acceptancecheck");
|
||||
this.OnAcceptancecheckChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -393451,6 +393523,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CompleteTime;
|
||||
|
||||
private string _Ndt;
|
||||
|
||||
private string _Flushing;
|
||||
|
||||
private string _RunningTest;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -393475,6 +393553,12 @@ namespace Model
|
||||
partial void OnFINAL_StatusChanged();
|
||||
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompleteTimeChanged();
|
||||
partial void OnNdtChanging(string value);
|
||||
partial void OnNdtChanged();
|
||||
partial void OnFlushingChanging(string value);
|
||||
partial void OnFlushingChanged();
|
||||
partial void OnRunningTestChanging(string value);
|
||||
partial void OnRunningTestChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Plumbing()
|
||||
@@ -393682,6 +393766,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Ndt", DbType="NVarChar(50)")]
|
||||
public string Ndt
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Ndt;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Ndt != value))
|
||||
{
|
||||
this.OnNdtChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Ndt = value;
|
||||
this.SendPropertyChanged("Ndt");
|
||||
this.OnNdtChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Flushing", DbType="NVarChar(50)")]
|
||||
public string Flushing
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Flushing;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Flushing != value))
|
||||
{
|
||||
this.OnFlushingChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Flushing = value;
|
||||
this.SendPropertyChanged("Flushing");
|
||||
this.OnFlushingChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RunningTest", DbType="NVarChar(50)")]
|
||||
public string RunningTest
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RunningTest;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RunningTest != value))
|
||||
{
|
||||
this.OnRunningTestChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RunningTest = value;
|
||||
this.SendPropertyChanged("RunningTest");
|
||||
this.OnRunningTestChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -395801,6 +395945,14 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CompleteTime;
|
||||
|
||||
private string _Installation;
|
||||
|
||||
private string _Communication;
|
||||
|
||||
private string _CableLaying;
|
||||
|
||||
private string _FunctionTest;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -395825,6 +395977,14 @@ namespace Model
|
||||
partial void OnFINAL_StatusChanged();
|
||||
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompleteTimeChanged();
|
||||
partial void OnInstallationChanging(string value);
|
||||
partial void OnInstallationChanged();
|
||||
partial void OnCommunicationChanging(string value);
|
||||
partial void OnCommunicationChanged();
|
||||
partial void OnCableLayingChanging(string value);
|
||||
partial void OnCableLayingChanged();
|
||||
partial void OnFunctionTestChanging(string value);
|
||||
partial void OnFunctionTestChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Telecom()
|
||||
@@ -396032,6 +396192,86 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Installation", DbType="NVarChar(50)")]
|
||||
public string Installation
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Installation;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Installation != value))
|
||||
{
|
||||
this.OnInstallationChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Installation = value;
|
||||
this.SendPropertyChanged("Installation");
|
||||
this.OnInstallationChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Communication", DbType="NVarChar(50)")]
|
||||
public string Communication
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Communication;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Communication != value))
|
||||
{
|
||||
this.OnCommunicationChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Communication = value;
|
||||
this.SendPropertyChanged("Communication");
|
||||
this.OnCommunicationChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CableLaying", DbType="NVarChar(50)")]
|
||||
public string CableLaying
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CableLaying;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CableLaying != value))
|
||||
{
|
||||
this.OnCableLayingChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CableLaying = value;
|
||||
this.SendPropertyChanged("CableLaying");
|
||||
this.OnCableLayingChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FunctionTest", DbType="NVarChar(50)")]
|
||||
public string FunctionTest
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FunctionTest;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FunctionTest != value))
|
||||
{
|
||||
this.OnFunctionTestChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._FunctionTest = value;
|
||||
this.SendPropertyChanged("FunctionTest");
|
||||
this.OnFunctionTestChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user