指挥调度中心菜单移动到安全检查下面-智慧巡检

This commit is contained in:
2025-07-11 09:33:33 +08:00
parent 016911d097
commit 2566255f90
5 changed files with 76 additions and 80 deletions
+48 -69
View File
@@ -26794,6 +26794,10 @@ namespace Model
private System.Nullable<System.DateTime> _PlanEndDate;
private string _AQMAccount;
private string _AQMPwd;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -27514,6 +27518,10 @@ namespace Model
partial void OnPlanStartDateChanged();
partial void OnPlanEndDateChanging(System.Nullable<System.DateTime> value);
partial void OnPlanEndDateChanged();
partial void OnAQMAccountChanging(string value);
partial void OnAQMAccountChanged();
partial void OnAQMPwdChanging(string value);
partial void OnAQMPwdChanged();
#endregion
public Base_Project()
@@ -28799,6 +28807,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AQMAccount", DbType="NVarChar(50)")]
public string AQMAccount
{
get
{
return this._AQMAccount;
}
set
{
if ((this._AQMAccount != value))
{
this.OnAQMAccountChanging(value);
this.SendPropertyChanging();
this._AQMAccount = value;
this.SendPropertyChanged("AQMAccount");
this.OnAQMAccountChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AQMPwd", DbType="NVarChar(50)")]
public string AQMPwd
{
get
{
return this._AQMPwd;
}
set
{
if ((this._AQMPwd != value))
{
this.OnAQMPwdChanging(value);
this.SendPropertyChanging();
this._AQMPwd = value;
this.SendPropertyChanged("AQMPwd");
this.OnAQMPwdChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{
@@ -231804,8 +231852,6 @@ namespace Model
private EntityRef<Base_Unit> _Base_Unit;
private EntityRef<ProjectData_WorkArea> _ProjectData_WorkArea;
private EntityRef<Sys_User> _Sys_User;
#region
@@ -231840,7 +231886,6 @@ namespace Model
{
this._Base_Project = default(EntityRef<Base_Project>);
this._Base_Unit = default(EntityRef<Base_Unit>);
this._ProjectData_WorkArea = default(EntityRef<ProjectData_WorkArea>);
this._Sys_User = default(EntityRef<Sys_User>);
OnCreated();
}
@@ -231984,10 +232029,6 @@ namespace Model
{
if ((this._WorkAreaId != value))
{
if (this._ProjectData_WorkArea.HasLoadedOrAssignedValue)
{
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
}
this.OnWorkAreaIdChanging(value);
this.SendPropertyChanging();
this._WorkAreaId = value;
@@ -232149,40 +232190,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_EquipmentSafetyList_ProjectData_WorkArea", Storage="_ProjectData_WorkArea", ThisKey="WorkAreaId", OtherKey="WorkAreaId", IsForeignKey=true)]
public ProjectData_WorkArea ProjectData_WorkArea
{
get
{
return this._ProjectData_WorkArea.Entity;
}
set
{
ProjectData_WorkArea previousValue = this._ProjectData_WorkArea.Entity;
if (((previousValue != value)
|| (this._ProjectData_WorkArea.HasLoadedOrAssignedValue == false)))
{
this.SendPropertyChanging();
if ((previousValue != null))
{
this._ProjectData_WorkArea.Entity = null;
previousValue.License_EquipmentSafetyList.Remove(this);
}
this._ProjectData_WorkArea.Entity = value;
if ((value != null))
{
value.License_EquipmentSafetyList.Add(this);
this._WorkAreaId = value.WorkAreaId;
}
else
{
this._WorkAreaId = default(string);
}
this.SendPropertyChanged("ProjectData_WorkArea");
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_EquipmentSafetyList_Sys_User", Storage="_Sys_User", ThisKey="CompileMan", OtherKey="UserId", IsForeignKey=true)]
public Sys_User Sys_User
{
@@ -315204,8 +315211,6 @@ namespace Model
private EntitySet<Check_SupervisionNotice> _Check_SupervisionNotice;
private EntitySet<License_EquipmentSafetyList> _License_EquipmentSafetyList;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -315234,7 +315239,6 @@ namespace Model
{
this._Check_CheckDayDetail = new EntitySet<Check_CheckDayDetail>(new Action<Check_CheckDayDetail>(this.attach_Check_CheckDayDetail), new Action<Check_CheckDayDetail>(this.detach_Check_CheckDayDetail));
this._Check_SupervisionNotice = new EntitySet<Check_SupervisionNotice>(new Action<Check_SupervisionNotice>(this.attach_Check_SupervisionNotice), new Action<Check_SupervisionNotice>(this.detach_Check_SupervisionNotice));
this._License_EquipmentSafetyList = new EntitySet<License_EquipmentSafetyList>(new Action<License_EquipmentSafetyList>(this.attach_License_EquipmentSafetyList), new Action<License_EquipmentSafetyList>(this.detach_License_EquipmentSafetyList));
this._Base_Project = default(EntityRef<Base_Project>);
this._Base_Unit = default(EntityRef<Base_Unit>);
OnCreated();
@@ -315414,19 +315418,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_License_EquipmentSafetyList_ProjectData_WorkArea", Storage="_License_EquipmentSafetyList", ThisKey="WorkAreaId", OtherKey="WorkAreaId", DeleteRule="NO ACTION")]
public EntitySet<License_EquipmentSafetyList> License_EquipmentSafetyList
{
get
{
return this._License_EquipmentSafetyList;
}
set
{
this._License_EquipmentSafetyList.Assign(value);
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_ProjectData_WorkArea_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -315538,18 +315529,6 @@ namespace Model
this.SendPropertyChanging();
entity.ProjectData_WorkArea = null;
}
private void attach_License_EquipmentSafetyList(License_EquipmentSafetyList entity)
{
this.SendPropertyChanging();
entity.ProjectData_WorkArea = this;
}
private void detach_License_EquipmentSafetyList(License_EquipmentSafetyList entity)
{
this.SendPropertyChanging();
entity.ProjectData_WorkArea = null;
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ProjectSupervision_Check1")]