This commit is contained in:
2024-02-27 18:13:26 +08:00
parent 7f67a750c8
commit 6106fb7d9c
33 changed files with 2769 additions and 1820 deletions
+744
View File
@@ -214923,6 +214923,16 @@ namespace Model
private string _IdNum;
private string _WorkLeaderId;
private string _HasSpecialProgramme;
private string _OtherAttach;
private string _HasDrawing;
private string _DrawingDes;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -214987,6 +214997,16 @@ namespace Model
partial void OnWorkManChanged();
partial void OnIdNumChanging(string value);
partial void OnIdNumChanged();
partial void OnWorkLeaderIdChanging(string value);
partial void OnWorkLeaderIdChanged();
partial void OnHasSpecialProgrammeChanging(string value);
partial void OnHasSpecialProgrammeChanged();
partial void OnOtherAttachChanging(string value);
partial void OnOtherAttachChanged();
partial void OnHasDrawingChanging(string value);
partial void OnHasDrawingChanged();
partial void OnDrawingDesChanging(string value);
partial void OnDrawingDesChanged();
#endregion
public License_BreakGround()
@@ -215519,6 +215539,106 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderId", DbType="NVarChar(50)")]
public string WorkLeaderId
{
get
{
return this._WorkLeaderId;
}
set
{
if ((this._WorkLeaderId != value))
{
this.OnWorkLeaderIdChanging(value);
this.SendPropertyChanging();
this._WorkLeaderId = value;
this.SendPropertyChanged("WorkLeaderId");
this.OnWorkLeaderIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HasSpecialProgramme", DbType="NVarChar(5)")]
public string HasSpecialProgramme
{
get
{
return this._HasSpecialProgramme;
}
set
{
if ((this._HasSpecialProgramme != value))
{
this.OnHasSpecialProgrammeChanging(value);
this.SendPropertyChanging();
this._HasSpecialProgramme = value;
this.SendPropertyChanged("HasSpecialProgramme");
this.OnHasSpecialProgrammeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherAttach", DbType="NVarChar(50)")]
public string OtherAttach
{
get
{
return this._OtherAttach;
}
set
{
if ((this._OtherAttach != value))
{
this.OnOtherAttachChanging(value);
this.SendPropertyChanging();
this._OtherAttach = value;
this.SendPropertyChanged("OtherAttach");
this.OnOtherAttachChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HasDrawing", DbType="NVarChar(5)")]
public string HasDrawing
{
get
{
return this._HasDrawing;
}
set
{
if ((this._HasDrawing != value))
{
this.OnHasDrawingChanging(value);
this.SendPropertyChanging();
this._HasDrawing = value;
this.SendPropertyChanged("HasDrawing");
this.OnHasDrawingChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingDes", DbType="NVarChar(500)")]
public string DrawingDes
{
get
{
return this._DrawingDes;
}
set
{
if ((this._DrawingDes != value))
{
this.OnDrawingDesChanging(value);
this.SendPropertyChanging();
this._DrawingDes = value;
this.SendPropertyChanged("DrawingDes");
this.OnDrawingDesChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_BreakGround_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -216230,6 +216350,28 @@ namespace Model
private string _SignatureUrl;
private string _WorkLeaderId;
private string _WorkLeaderTel;
private string _HasSpecialProgramme;
private string _OtherAttach;
private string _WorkType;
private string _Other1;
private string _Other2;
private string _PossibleHazards;
private string _NeedGasDetection;
private string _DetectionFrequency;
private string _GasDetectionAttach;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -216294,6 +216436,28 @@ namespace Model
partial void OnAnalysisDataChanged();
partial void OnSignatureUrlChanging(string value);
partial void OnSignatureUrlChanged();
partial void OnWorkLeaderIdChanging(string value);
partial void OnWorkLeaderIdChanged();
partial void OnWorkLeaderTelChanging(string value);
partial void OnWorkLeaderTelChanged();
partial void OnHasSpecialProgrammeChanging(string value);
partial void OnHasSpecialProgrammeChanged();
partial void OnOtherAttachChanging(string value);
partial void OnOtherAttachChanged();
partial void OnWorkTypeChanging(string value);
partial void OnWorkTypeChanged();
partial void OnOther1Changing(string value);
partial void OnOther1Changed();
partial void OnOther2Changing(string value);
partial void OnOther2Changed();
partial void OnPossibleHazardsChanging(string value);
partial void OnPossibleHazardsChanged();
partial void OnNeedGasDetectionChanging(string value);
partial void OnNeedGasDetectionChanged();
partial void OnDetectionFrequencyChanging(string value);
partial void OnDetectionFrequencyChanged();
partial void OnGasDetectionAttachChanging(string value);
partial void OnGasDetectionAttachChanged();
#endregion
public License_FireWork()
@@ -216811,6 +216975,226 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderId", DbType="NVarChar(50)")]
public string WorkLeaderId
{
get
{
return this._WorkLeaderId;
}
set
{
if ((this._WorkLeaderId != value))
{
this.OnWorkLeaderIdChanging(value);
this.SendPropertyChanging();
this._WorkLeaderId = value;
this.SendPropertyChanged("WorkLeaderId");
this.OnWorkLeaderIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderTel", DbType="NVarChar(50)")]
public string WorkLeaderTel
{
get
{
return this._WorkLeaderTel;
}
set
{
if ((this._WorkLeaderTel != value))
{
this.OnWorkLeaderTelChanging(value);
this.SendPropertyChanging();
this._WorkLeaderTel = value;
this.SendPropertyChanged("WorkLeaderTel");
this.OnWorkLeaderTelChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HasSpecialProgramme", DbType="NVarChar(5)")]
public string HasSpecialProgramme
{
get
{
return this._HasSpecialProgramme;
}
set
{
if ((this._HasSpecialProgramme != value))
{
this.OnHasSpecialProgrammeChanging(value);
this.SendPropertyChanging();
this._HasSpecialProgramme = value;
this.SendPropertyChanged("HasSpecialProgramme");
this.OnHasSpecialProgrammeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherAttach", DbType="NVarChar(50)")]
public string OtherAttach
{
get
{
return this._OtherAttach;
}
set
{
if ((this._OtherAttach != value))
{
this.OnOtherAttachChanging(value);
this.SendPropertyChanging();
this._OtherAttach = value;
this.SendPropertyChanged("OtherAttach");
this.OnOtherAttachChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkType", DbType="NVarChar(200)")]
public string WorkType
{
get
{
return this._WorkType;
}
set
{
if ((this._WorkType != value))
{
this.OnWorkTypeChanging(value);
this.SendPropertyChanging();
this._WorkType = value;
this.SendPropertyChanged("WorkType");
this.OnWorkTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Other1", DbType="NVarChar(50)")]
public string Other1
{
get
{
return this._Other1;
}
set
{
if ((this._Other1 != value))
{
this.OnOther1Changing(value);
this.SendPropertyChanging();
this._Other1 = value;
this.SendPropertyChanged("Other1");
this.OnOther1Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Other2", DbType="NVarChar(50)")]
public string Other2
{
get
{
return this._Other2;
}
set
{
if ((this._Other2 != value))
{
this.OnOther2Changing(value);
this.SendPropertyChanging();
this._Other2 = value;
this.SendPropertyChanged("Other2");
this.OnOther2Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PossibleHazards", DbType="NVarChar(100)")]
public string PossibleHazards
{
get
{
return this._PossibleHazards;
}
set
{
if ((this._PossibleHazards != value))
{
this.OnPossibleHazardsChanging(value);
this.SendPropertyChanging();
this._PossibleHazards = value;
this.SendPropertyChanged("PossibleHazards");
this.OnPossibleHazardsChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_NeedGasDetection", DbType="NVarChar(5)")]
public string NeedGasDetection
{
get
{
return this._NeedGasDetection;
}
set
{
if ((this._NeedGasDetection != value))
{
this.OnNeedGasDetectionChanging(value);
this.SendPropertyChanging();
this._NeedGasDetection = value;
this.SendPropertyChanged("NeedGasDetection");
this.OnNeedGasDetectionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionFrequency", DbType="NVarChar(50)")]
public string DetectionFrequency
{
get
{
return this._DetectionFrequency;
}
set
{
if ((this._DetectionFrequency != value))
{
this.OnDetectionFrequencyChanging(value);
this.SendPropertyChanging();
this._DetectionFrequency = value;
this.SendPropertyChanged("DetectionFrequency");
this.OnDetectionFrequencyChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GasDetectionAttach", DbType="NVarChar(500)")]
public string GasDetectionAttach
{
get
{
return this._GasDetectionAttach;
}
set
{
if ((this._GasDetectionAttach != value))
{
this.OnGasDetectionAttachChanging(value);
this.SendPropertyChanging();
this._GasDetectionAttach = value;
this.SendPropertyChanged("GasDetectionAttach");
this.OnGasDetectionAttachChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_FireWork_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -220982,6 +221366,14 @@ namespace Model
private string _WatchMan;
private string _CapacityDes;
private string _WorkLeaderId;
private string _HasSpecialProgramme;
private string _OtherAttach;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -221052,6 +221444,14 @@ namespace Model
partial void OnOtherManChanged();
partial void OnWatchManChanging(string value);
partial void OnWatchManChanged();
partial void OnCapacityDesChanging(string value);
partial void OnCapacityDesChanged();
partial void OnWorkLeaderIdChanging(string value);
partial void OnWorkLeaderIdChanged();
partial void OnHasSpecialProgrammeChanging(string value);
partial void OnHasSpecialProgrammeChanged();
partial void OnOtherAttachChanging(string value);
partial void OnOtherAttachChanged();
#endregion
public License_LiftingWork()
@@ -221644,6 +222044,86 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CapacityDes", DbType="NVarChar(500)")]
public string CapacityDes
{
get
{
return this._CapacityDes;
}
set
{
if ((this._CapacityDes != value))
{
this.OnCapacityDesChanging(value);
this.SendPropertyChanging();
this._CapacityDes = value;
this.SendPropertyChanged("CapacityDes");
this.OnCapacityDesChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderId", DbType="NVarChar(50)")]
public string WorkLeaderId
{
get
{
return this._WorkLeaderId;
}
set
{
if ((this._WorkLeaderId != value))
{
this.OnWorkLeaderIdChanging(value);
this.SendPropertyChanging();
this._WorkLeaderId = value;
this.SendPropertyChanged("WorkLeaderId");
this.OnWorkLeaderIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HasSpecialProgramme", DbType="NVarChar(5)")]
public string HasSpecialProgramme
{
get
{
return this._HasSpecialProgramme;
}
set
{
if ((this._HasSpecialProgramme != value))
{
this.OnHasSpecialProgrammeChanging(value);
this.SendPropertyChanging();
this._HasSpecialProgramme = value;
this.SendPropertyChanged("HasSpecialProgramme");
this.OnHasSpecialProgrammeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherAttach", DbType="NVarChar(50)")]
public string OtherAttach
{
get
{
return this._OtherAttach;
}
set
{
if ((this._OtherAttach != value))
{
this.OnOtherAttachChanging(value);
this.SendPropertyChanging();
this._OtherAttach = value;
this.SendPropertyChanged("OtherAttach");
this.OnOtherAttachChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_LiftingWork_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -226943,6 +227423,28 @@ namespace Model
private string _Tools;
private string _WorkLeaderId;
private string _UseTo;
private string _AccessPoint;
private string _AccessPointNo;
private string _AccessPointAddress;
private string _WorkingVoltage;
private string _ElectricianPhone;
private string _HasSpecialProgramme;
private string _OtherAttach;
private string _EquipmentLoadList;
private string _EquipmentLoadDes;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -227007,6 +227509,28 @@ namespace Model
partial void OnElectricianChanged();
partial void OnToolsChanging(string value);
partial void OnToolsChanged();
partial void OnWorkLeaderIdChanging(string value);
partial void OnWorkLeaderIdChanged();
partial void OnUseToChanging(string value);
partial void OnUseToChanged();
partial void OnAccessPointChanging(string value);
partial void OnAccessPointChanged();
partial void OnAccessPointNoChanging(string value);
partial void OnAccessPointNoChanged();
partial void OnAccessPointAddressChanging(string value);
partial void OnAccessPointAddressChanged();
partial void OnWorkingVoltageChanging(string value);
partial void OnWorkingVoltageChanged();
partial void OnElectricianPhoneChanging(string value);
partial void OnElectricianPhoneChanged();
partial void OnHasSpecialProgrammeChanging(string value);
partial void OnHasSpecialProgrammeChanged();
partial void OnOtherAttachChanging(string value);
partial void OnOtherAttachChanged();
partial void OnEquipmentLoadListChanging(string value);
partial void OnEquipmentLoadListChanged();
partial void OnEquipmentLoadDesChanging(string value);
partial void OnEquipmentLoadDesChanged();
#endregion
public License_TempElectricity()
@@ -227524,6 +228048,226 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkLeaderId", DbType="NVarChar(50)")]
public string WorkLeaderId
{
get
{
return this._WorkLeaderId;
}
set
{
if ((this._WorkLeaderId != value))
{
this.OnWorkLeaderIdChanging(value);
this.SendPropertyChanging();
this._WorkLeaderId = value;
this.SendPropertyChanged("WorkLeaderId");
this.OnWorkLeaderIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UseTo", DbType="NVarChar(50)")]
public string UseTo
{
get
{
return this._UseTo;
}
set
{
if ((this._UseTo != value))
{
this.OnUseToChanging(value);
this.SendPropertyChanging();
this._UseTo = value;
this.SendPropertyChanged("UseTo");
this.OnUseToChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccessPoint", DbType="NVarChar(50)")]
public string AccessPoint
{
get
{
return this._AccessPoint;
}
set
{
if ((this._AccessPoint != value))
{
this.OnAccessPointChanging(value);
this.SendPropertyChanging();
this._AccessPoint = value;
this.SendPropertyChanged("AccessPoint");
this.OnAccessPointChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccessPointNo", DbType="NVarChar(50)")]
public string AccessPointNo
{
get
{
return this._AccessPointNo;
}
set
{
if ((this._AccessPointNo != value))
{
this.OnAccessPointNoChanging(value);
this.SendPropertyChanging();
this._AccessPointNo = value;
this.SendPropertyChanged("AccessPointNo");
this.OnAccessPointNoChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccessPointAddress", DbType="NVarChar(50)")]
public string AccessPointAddress
{
get
{
return this._AccessPointAddress;
}
set
{
if ((this._AccessPointAddress != value))
{
this.OnAccessPointAddressChanging(value);
this.SendPropertyChanging();
this._AccessPointAddress = value;
this.SendPropertyChanged("AccessPointAddress");
this.OnAccessPointAddressChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkingVoltage", DbType="NVarChar(50)")]
public string WorkingVoltage
{
get
{
return this._WorkingVoltage;
}
set
{
if ((this._WorkingVoltage != value))
{
this.OnWorkingVoltageChanging(value);
this.SendPropertyChanging();
this._WorkingVoltage = value;
this.SendPropertyChanged("WorkingVoltage");
this.OnWorkingVoltageChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ElectricianPhone", DbType="NVarChar(50)")]
public string ElectricianPhone
{
get
{
return this._ElectricianPhone;
}
set
{
if ((this._ElectricianPhone != value))
{
this.OnElectricianPhoneChanging(value);
this.SendPropertyChanging();
this._ElectricianPhone = value;
this.SendPropertyChanged("ElectricianPhone");
this.OnElectricianPhoneChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_HasSpecialProgramme", DbType="NVarChar(5)")]
public string HasSpecialProgramme
{
get
{
return this._HasSpecialProgramme;
}
set
{
if ((this._HasSpecialProgramme != value))
{
this.OnHasSpecialProgrammeChanging(value);
this.SendPropertyChanging();
this._HasSpecialProgramme = value;
this.SendPropertyChanged("HasSpecialProgramme");
this.OnHasSpecialProgrammeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherAttach", DbType="NVarChar(50)")]
public string OtherAttach
{
get
{
return this._OtherAttach;
}
set
{
if ((this._OtherAttach != value))
{
this.OnOtherAttachChanging(value);
this.SendPropertyChanging();
this._OtherAttach = value;
this.SendPropertyChanged("OtherAttach");
this.OnOtherAttachChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EquipmentLoadList", DbType="NVarChar(5)")]
public string EquipmentLoadList
{
get
{
return this._EquipmentLoadList;
}
set
{
if ((this._EquipmentLoadList != value))
{
this.OnEquipmentLoadListChanging(value);
this.SendPropertyChanging();
this._EquipmentLoadList = value;
this.SendPropertyChanged("EquipmentLoadList");
this.OnEquipmentLoadListChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EquipmentLoadDes", DbType="NVarChar(50)")]
public string EquipmentLoadDes
{
get
{
return this._EquipmentLoadDes;
}
set
{
if ((this._EquipmentLoadDes != value))
{
this.OnEquipmentLoadDesChanging(value);
this.SendPropertyChanging();
this._EquipmentLoadDes = value;
this.SendPropertyChanged("EquipmentLoadDes");
this.OnEquipmentLoadDesChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_TempElectricity_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{