修改移交管理,增加统计报表以及添加字段

This commit is contained in:
2024-08-30 17:45:02 +08:00
parent 7311a2b6fa
commit d21533d599
30 changed files with 885 additions and 271 deletions
+48
View File
@@ -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;