移交,管道和仪表数据导入顺序不变
This commit is contained in:
@@ -396054,6 +396054,8 @@ namespace Model
|
||||
|
||||
private string _Calibration;
|
||||
|
||||
private int _SN;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -396092,6 +396094,8 @@ namespace Model
|
||||
partial void OnDescriptionsChanged();
|
||||
partial void OnCalibrationChanging(string value);
|
||||
partial void OnCalibrationChanged();
|
||||
partial void OnSNChanging(int value);
|
||||
partial void OnSNChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Instrumentation()
|
||||
@@ -396439,6 +396443,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SN", DbType="Int NOT NULL")]
|
||||
public int SN
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SN;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SN != value))
|
||||
{
|
||||
this.OnSNChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SN = value;
|
||||
this.SendPropertyChanged("SN");
|
||||
this.OnSNChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -396926,6 +396950,8 @@ namespace Model
|
||||
|
||||
private string _Insulation;
|
||||
|
||||
private int _SN;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -396992,6 +397018,8 @@ namespace Model
|
||||
partial void OnElectricHeatTracingChanged();
|
||||
partial void OnInsulationChanging(string value);
|
||||
partial void OnInsulationChanged();
|
||||
partial void OnSNChanging(int value);
|
||||
partial void OnSNChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Piping()
|
||||
@@ -397619,6 +397647,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SN", DbType="Int NOT NULL")]
|
||||
public int SN
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SN;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SN != value))
|
||||
{
|
||||
this.OnSNChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SN = value;
|
||||
this.SendPropertyChanged("SN");
|
||||
this.OnSNChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user