提交代码

This commit is contained in:
2024-07-25 16:38:08 +08:00
51 changed files with 3765 additions and 1371 deletions
+792
View File
@@ -390806,6 +390806,22 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _Foundation;
private string _Mainstructure;
private string _Buildingdecoration;
private string _Equipment;
private string _Instrument;
private string _Electrical;
private string _FireFighting;
private string _HVAC;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -390830,6 +390846,22 @@ namespace Model
partial void OnFINAL_StatusChanged();
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCompleteTimeChanged();
partial void OnFoundationChanging(string value);
partial void OnFoundationChanged();
partial void OnMainstructureChanging(string value);
partial void OnMainstructureChanged();
partial void OnBuildingdecorationChanging(string value);
partial void OnBuildingdecorationChanged();
partial void OnEquipmentChanging(string value);
partial void OnEquipmentChanged();
partial void OnInstrumentChanging(string value);
partial void OnInstrumentChanged();
partial void OnElectricalChanging(string value);
partial void OnElectricalChanged();
partial void OnFireFightingChanging(string value);
partial void OnFireFightingChanged();
partial void OnHVACChanging(string value);
partial void OnHVACChanged();
#endregion
public Transfer_Civil_Structure()
@@ -391037,6 +391069,166 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Foundation", DbType="NVarChar(50)")]
public string Foundation
{
get
{
return this._Foundation;
}
set
{
if ((this._Foundation != value))
{
this.OnFoundationChanging(value);
this.SendPropertyChanging();
this._Foundation = value;
this.SendPropertyChanged("Foundation");
this.OnFoundationChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Mainstructure", DbType="NVarChar(50)")]
public string Mainstructure
{
get
{
return this._Mainstructure;
}
set
{
if ((this._Mainstructure != value))
{
this.OnMainstructureChanging(value);
this.SendPropertyChanging();
this._Mainstructure = value;
this.SendPropertyChanged("Mainstructure");
this.OnMainstructureChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Buildingdecoration", DbType="NVarChar(50)")]
public string Buildingdecoration
{
get
{
return this._Buildingdecoration;
}
set
{
if ((this._Buildingdecoration != value))
{
this.OnBuildingdecorationChanging(value);
this.SendPropertyChanging();
this._Buildingdecoration = value;
this.SendPropertyChanged("Buildingdecoration");
this.OnBuildingdecorationChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Equipment", DbType="NVarChar(50)")]
public string Equipment
{
get
{
return this._Equipment;
}
set
{
if ((this._Equipment != value))
{
this.OnEquipmentChanging(value);
this.SendPropertyChanging();
this._Equipment = value;
this.SendPropertyChanged("Equipment");
this.OnEquipmentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Instrument", DbType="NVarChar(50)")]
public string Instrument
{
get
{
return this._Instrument;
}
set
{
if ((this._Instrument != value))
{
this.OnInstrumentChanging(value);
this.SendPropertyChanging();
this._Instrument = value;
this.SendPropertyChanged("Instrument");
this.OnInstrumentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Electrical", DbType="NVarChar(50)")]
public string Electrical
{
get
{
return this._Electrical;
}
set
{
if ((this._Electrical != value))
{
this.OnElectricalChanging(value);
this.SendPropertyChanging();
this._Electrical = value;
this.SendPropertyChanged("Electrical");
this.OnElectricalChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FireFighting", DbType="NVarChar(50)")]
public string FireFighting
{
get
{
return this._FireFighting;
}
set
{
if ((this._FireFighting != value))
{
this.OnFireFightingChanging(value);
this.SendPropertyChanging();
this._FireFighting = value;
this.SendPropertyChanged("FireFighting");
this.OnFireFightingChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HVAC", DbType="NVarChar(50)")]
public string HVAC
{
get
{
return this._HVAC;
}
set
{
if ((this._HVAC != value))
{
this.OnHVACChanging(value);
this.SendPropertyChanging();
this._HVAC = value;
this.SendPropertyChanged("HVAC");
this.OnHVACChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -391084,6 +391276,14 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _Installation;
private string _Communicationtest;
private string _CableLaying;
private string _LoopTest;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -391108,6 +391308,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 OnCommunicationtestChanging(string value);
partial void OnCommunicationtestChanged();
partial void OnCableLayingChanging(string value);
partial void OnCableLayingChanged();
partial void OnLoopTestChanging(string value);
partial void OnLoopTestChanged();
#endregion
public Transfer_Electrical()
@@ -391315,6 +391523,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="_Communicationtest", DbType="NVarChar(50)")]
public string Communicationtest
{
get
{
return this._Communicationtest;
}
set
{
if ((this._Communicationtest != value))
{
this.OnCommunicationtestChanging(value);
this.SendPropertyChanging();
this._Communicationtest = value;
this.SendPropertyChanged("Communicationtest");
this.OnCommunicationtestChanged();
}
}
}
[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="_LoopTest", DbType="NVarChar(50)")]
public string LoopTest
{
get
{
return this._LoopTest;
}
set
{
if ((this._LoopTest != value))
{
this.OnLoopTestChanging(value);
this.SendPropertyChanging();
this._LoopTest = value;
this.SendPropertyChanged("LoopTest");
this.OnLoopTestChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -391918,6 +392206,16 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _InstallationCalibration;
private string _PipingPressuretest;
private string _PipingLeak;
private string _PipingBlowing;
private string _Looptest;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -391942,6 +392240,16 @@ namespace Model
partial void OnFINAL_StatusChanged();
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCompleteTimeChanged();
partial void OnInstallationCalibrationChanging(string value);
partial void OnInstallationCalibrationChanged();
partial void OnPipingPressuretestChanging(string value);
partial void OnPipingPressuretestChanged();
partial void OnPipingLeakChanging(string value);
partial void OnPipingLeakChanged();
partial void OnPipingBlowingChanging(string value);
partial void OnPipingBlowingChanged();
partial void OnLooptestChanging(string value);
partial void OnLooptestChanged();
#endregion
public Transfer_Instrumentation()
@@ -392149,6 +392457,106 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationCalibration", DbType="NVarChar(50)")]
public string InstallationCalibration
{
get
{
return this._InstallationCalibration;
}
set
{
if ((this._InstallationCalibration != value))
{
this.OnInstallationCalibrationChanging(value);
this.SendPropertyChanging();
this._InstallationCalibration = value;
this.SendPropertyChanged("InstallationCalibration");
this.OnInstallationCalibrationChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipingPressuretest", DbType="NVarChar(50)")]
public string PipingPressuretest
{
get
{
return this._PipingPressuretest;
}
set
{
if ((this._PipingPressuretest != value))
{
this.OnPipingPressuretestChanging(value);
this.SendPropertyChanging();
this._PipingPressuretest = value;
this.SendPropertyChanged("PipingPressuretest");
this.OnPipingPressuretestChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipingLeak", DbType="NVarChar(50)")]
public string PipingLeak
{
get
{
return this._PipingLeak;
}
set
{
if ((this._PipingLeak != value))
{
this.OnPipingLeakChanging(value);
this.SendPropertyChanging();
this._PipingLeak = value;
this.SendPropertyChanged("PipingLeak");
this.OnPipingLeakChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipingBlowing", DbType="NVarChar(50)")]
public string PipingBlowing
{
get
{
return this._PipingBlowing;
}
set
{
if ((this._PipingBlowing != value))
{
this.OnPipingBlowingChanging(value);
this.SendPropertyChanging();
this._PipingBlowing = value;
this.SendPropertyChanged("PipingBlowing");
this.OnPipingBlowingChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Looptest", DbType="NVarChar(50)")]
public string Looptest
{
get
{
return this._Looptest;
}
set
{
if ((this._Looptest != value))
{
this.OnLooptestChanging(value);
this.SendPropertyChanging();
this._Looptest = value;
this.SendPropertyChanged("Looptest");
this.OnLooptestChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -392550,6 +392958,26 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _PWD;
private string _Apunchclosed;
private string _NDTReport;
private string _TemperaryMeasurement;
private string _FWDfinished;
private string _HydrostaticTest;
private string _Report;
private string _Blowingflushing;
private string _Systemreinstalled;
private string _BlowingReport;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -392578,6 +393006,26 @@ namespace Model
partial void OnFinalTestFINISHEDChanged();
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCompleteTimeChanged();
partial void OnPWDChanging(string value);
partial void OnPWDChanged();
partial void OnApunchclosedChanging(string value);
partial void OnApunchclosedChanged();
partial void OnNDTReportChanging(string value);
partial void OnNDTReportChanged();
partial void OnTemperaryMeasurementChanging(string value);
partial void OnTemperaryMeasurementChanged();
partial void OnFWDfinishedChanging(string value);
partial void OnFWDfinishedChanged();
partial void OnHydrostaticTestChanging(string value);
partial void OnHydrostaticTestChanged();
partial void OnReportChanging(string value);
partial void OnReportChanged();
partial void OnBlowingflushingChanging(string value);
partial void OnBlowingflushingChanged();
partial void OnSystemreinstalledChanging(string value);
partial void OnSystemreinstalledChanged();
partial void OnBlowingReportChanging(string value);
partial void OnBlowingReportChanged();
#endregion
public Transfer_Piping()
@@ -392825,6 +393273,206 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PWD", DbType="NVarChar(50)")]
public string PWD
{
get
{
return this._PWD;
}
set
{
if ((this._PWD != value))
{
this.OnPWDChanging(value);
this.SendPropertyChanging();
this._PWD = value;
this.SendPropertyChanged("PWD");
this.OnPWDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Apunchclosed", DbType="NVarChar(50)")]
public string Apunchclosed
{
get
{
return this._Apunchclosed;
}
set
{
if ((this._Apunchclosed != value))
{
this.OnApunchclosedChanging(value);
this.SendPropertyChanging();
this._Apunchclosed = value;
this.SendPropertyChanged("Apunchclosed");
this.OnApunchclosedChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NDTReport", DbType="NVarChar(50)")]
public string NDTReport
{
get
{
return this._NDTReport;
}
set
{
if ((this._NDTReport != value))
{
this.OnNDTReportChanging(value);
this.SendPropertyChanging();
this._NDTReport = value;
this.SendPropertyChanged("NDTReport");
this.OnNDTReportChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TemperaryMeasurement", DbType="NVarChar(50)")]
public string TemperaryMeasurement
{
get
{
return this._TemperaryMeasurement;
}
set
{
if ((this._TemperaryMeasurement != value))
{
this.OnTemperaryMeasurementChanging(value);
this.SendPropertyChanging();
this._TemperaryMeasurement = value;
this.SendPropertyChanged("TemperaryMeasurement");
this.OnTemperaryMeasurementChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FWDfinished", DbType="NVarChar(50)")]
public string FWDfinished
{
get
{
return this._FWDfinished;
}
set
{
if ((this._FWDfinished != value))
{
this.OnFWDfinishedChanging(value);
this.SendPropertyChanging();
this._FWDfinished = value;
this.SendPropertyChanged("FWDfinished");
this.OnFWDfinishedChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HydrostaticTest", DbType="NVarChar(50)")]
public string HydrostaticTest
{
get
{
return this._HydrostaticTest;
}
set
{
if ((this._HydrostaticTest != value))
{
this.OnHydrostaticTestChanging(value);
this.SendPropertyChanging();
this._HydrostaticTest = value;
this.SendPropertyChanged("HydrostaticTest");
this.OnHydrostaticTestChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Report", DbType="NVarChar(50)")]
public string Report
{
get
{
return this._Report;
}
set
{
if ((this._Report != value))
{
this.OnReportChanging(value);
this.SendPropertyChanging();
this._Report = value;
this.SendPropertyChanged("Report");
this.OnReportChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Blowingflushing", DbType="NVarChar(50)")]
public string Blowingflushing
{
get
{
return this._Blowingflushing;
}
set
{
if ((this._Blowingflushing != value))
{
this.OnBlowingflushingChanging(value);
this.SendPropertyChanging();
this._Blowingflushing = value;
this.SendPropertyChanged("Blowingflushing");
this.OnBlowingflushingChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Systemreinstalled", DbType="NVarChar(50)")]
public string Systemreinstalled
{
get
{
return this._Systemreinstalled;
}
set
{
if ((this._Systemreinstalled != value))
{
this.OnSystemreinstalledChanging(value);
this.SendPropertyChanging();
this._Systemreinstalled = value;
this.SendPropertyChanged("Systemreinstalled");
this.OnSystemreinstalledChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BlowingReport", DbType="NVarChar(50)")]
public string BlowingReport
{
get
{
return this._BlowingReport;
}
set
{
if ((this._BlowingReport != value))
{
this.OnBlowingReportChanging(value);
this.SendPropertyChanging();
this._BlowingReport = value;
this.SendPropertyChanged("BlowingReport");
this.OnBlowingReportChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -394522,6 +395170,12 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _Alignment;
private string _Motorsoloruntest;
private string _Standalonetest;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -394546,6 +395200,12 @@ namespace Model
partial void OnMechanicalFINALStatusChanged();
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCompleteTimeChanged();
partial void OnAlignmentChanging(string value);
partial void OnAlignmentChanged();
partial void OnMotorsoloruntestChanging(string value);
partial void OnMotorsoloruntestChanged();
partial void OnStandalonetestChanging(string value);
partial void OnStandalonetestChanged();
#endregion
public Transfer_RotatingEquipment()
@@ -394753,6 +395413,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Alignment", DbType="NVarChar(50)")]
public string Alignment
{
get
{
return this._Alignment;
}
set
{
if ((this._Alignment != value))
{
this.OnAlignmentChanging(value);
this.SendPropertyChanging();
this._Alignment = value;
this.SendPropertyChanged("Alignment");
this.OnAlignmentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Motorsoloruntest", DbType="NVarChar(50)")]
public string Motorsoloruntest
{
get
{
return this._Motorsoloruntest;
}
set
{
if ((this._Motorsoloruntest != value))
{
this.OnMotorsoloruntestChanging(value);
this.SendPropertyChanging();
this._Motorsoloruntest = value;
this.SendPropertyChanged("Motorsoloruntest");
this.OnMotorsoloruntestChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Standalonetest", DbType="NVarChar(50)")]
public string Standalonetest
{
get
{
return this._Standalonetest;
}
set
{
if ((this._Standalonetest != value))
{
this.OnStandalonetestChanging(value);
this.SendPropertyChanging();
this._Standalonetest = value;
this.SendPropertyChanged("Standalonetest");
this.OnStandalonetestChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -394800,6 +395520,12 @@ namespace Model
private System.Nullable<System.DateTime> _CompleteTime;
private string _Internalinspection;
private string _InternalsPacking;
private string _BOXupRecord;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -394824,6 +395550,12 @@ namespace Model
partial void OnMechanicalFINALStatusChanged();
partial void OnCompleteTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCompleteTimeChanged();
partial void OnInternalinspectionChanging(string value);
partial void OnInternalinspectionChanged();
partial void OnInternalsPackingChanging(string value);
partial void OnInternalsPackingChanged();
partial void OnBOXupRecordChanging(string value);
partial void OnBOXupRecordChanged();
#endregion
public Transfer_StaticEquipment()
@@ -395031,6 +395763,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Internalinspection", DbType="NVarChar(50)")]
public string Internalinspection
{
get
{
return this._Internalinspection;
}
set
{
if ((this._Internalinspection != value))
{
this.OnInternalinspectionChanging(value);
this.SendPropertyChanging();
this._Internalinspection = value;
this.SendPropertyChanged("Internalinspection");
this.OnInternalinspectionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InternalsPacking", DbType="NVarChar(50)")]
public string InternalsPacking
{
get
{
return this._InternalsPacking;
}
set
{
if ((this._InternalsPacking != value))
{
this.OnInternalsPackingChanging(value);
this.SendPropertyChanging();
this._InternalsPacking = value;
this.SendPropertyChanged("InternalsPacking");
this.OnInternalsPackingChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BOXupRecord", DbType="NVarChar(50)")]
public string BOXupRecord
{
get
{
return this._BOXupRecord;
}
set
{
if ((this._BOXupRecord != value))
{
this.OnBOXupRecordChanging(value);
this.SendPropertyChanging();
this._BOXupRecord = value;
this.SendPropertyChanged("BOXupRecord");
this.OnBOXupRecordChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;