修改移交管理,增加统计报表以及添加字段
This commit is contained in:
@@ -393832,6 +393832,8 @@ namespace Model
|
||||
|
||||
private string _Descriptions;
|
||||
|
||||
private string _Calibration;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -393868,6 +393870,8 @@ namespace Model
|
||||
partial void OnLooptestChanged();
|
||||
partial void OnDescriptionsChanging(string value);
|
||||
partial void OnDescriptionsChanged();
|
||||
partial void OnCalibrationChanging(string value);
|
||||
partial void OnCalibrationChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_Instrumentation()
|
||||
@@ -394195,6 +394199,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Calibration", DbType="NVarChar(50)")]
|
||||
public string Calibration
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Calibration;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Calibration != value))
|
||||
{
|
||||
this.OnCalibrationChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Calibration = value;
|
||||
this.SendPropertyChanged("Calibration");
|
||||
this.OnCalibrationChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -396984,6 +397008,8 @@ namespace Model
|
||||
|
||||
private string _Descriptions;
|
||||
|
||||
private string _Lubricatefilling;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -397016,6 +397042,8 @@ namespace Model
|
||||
partial void OnStandalonetestChanged();
|
||||
partial void OnDescriptionsChanging(string value);
|
||||
partial void OnDescriptionsChanged();
|
||||
partial void OnLubricatefillingChanging(string value);
|
||||
partial void OnLubricatefillingChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_RotatingEquipment()
|
||||
@@ -397303,6 +397331,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Lubricatefilling", DbType="NVarChar(50)")]
|
||||
public string Lubricatefilling
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Lubricatefilling;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Lubricatefilling != value))
|
||||
{
|
||||
this.OnLubricatefillingChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Lubricatefilling = value;
|
||||
this.SendPropertyChanged("Lubricatefilling");
|
||||
this.OnLubricatefillingChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user