修改进度报表及试车管理

This commit is contained in:
2023-06-19 10:20:55 +08:00
parent 78baadfb7f
commit 966843abbe
39 changed files with 3685 additions and 4335 deletions
+867
View File
@@ -1607,6 +1607,9 @@ namespace Model
partial void InsertPersonTrain_TrainPlan(PersonTrain_TrainPlan instance);
partial void UpdatePersonTrain_TrainPlan(PersonTrain_TrainPlan instance);
partial void DeletePersonTrain_TrainPlan(PersonTrain_TrainPlan instance);
partial void InsertPreRun_SysDevice(PreRun_SysDevice instance);
partial void UpdatePreRun_SysDevice(PreRun_SysDevice instance);
partial void DeletePreRun_SysDevice(PreRun_SysDevice instance);
partial void InsertProcessControl_HotProessManage(ProcessControl_HotProessManage instance);
partial void UpdateProcessControl_HotProessManage(ProcessControl_HotProessManage instance);
partial void DeleteProcessControl_HotProessManage(ProcessControl_HotProessManage instance);
@@ -1967,6 +1970,9 @@ namespace Model
partial void InsertSolution_SolutionTemplate(Solution_SolutionTemplate instance);
partial void UpdateSolution_SolutionTemplate(Solution_SolutionTemplate instance);
partial void DeleteSolution_SolutionTemplate(Solution_SolutionTemplate instance);
partial void InsertSubSys_WorkPackage(SubSys_WorkPackage instance);
partial void UpdateSubSys_WorkPackage(SubSys_WorkPackage instance);
partial void DeleteSubSys_WorkPackage(SubSys_WorkPackage instance);
partial void InsertSupervise_SubUnitCheckRectify(Supervise_SubUnitCheckRectify instance);
partial void UpdateSupervise_SubUnitCheckRectify(Supervise_SubUnitCheckRectify instance);
partial void DeleteSupervise_SubUnitCheckRectify(Supervise_SubUnitCheckRectify instance);
@@ -2309,6 +2315,9 @@ namespace Model
partial void InsertWelder_WelderQualify(Welder_WelderQualify instance);
partial void UpdateWelder_WelderQualify(Welder_WelderQualify instance);
partial void DeleteWelder_WelderQualify(Welder_WelderQualify instance);
partial void InsertWork_Package(Work_Package instance);
partial void UpdateWork_Package(Work_Package instance);
partial void DeleteWork_Package(Work_Package instance);
partial void InsertWPQ_WPQList(WPQ_WPQList instance);
partial void UpdateWPQ_WPQList(WPQ_WPQList instance);
partial void DeleteWPQ_WPQList(WPQ_WPQList instance);
@@ -6590,6 +6599,14 @@ namespace Model
}
}
public System.Data.Linq.Table<PreRun_SysDevice> PreRun_SysDevice
{
get
{
return this.GetTable<PreRun_SysDevice>();
}
}
public System.Data.Linq.Table<ProcessControl_HotProessManage> ProcessControl_HotProessManage
{
get
@@ -7558,6 +7575,14 @@ namespace Model
}
}
public System.Data.Linq.Table<SubSys_WorkPackage> SubSys_WorkPackage
{
get
{
return this.GetTable<SubSys_WorkPackage>();
}
}
public System.Data.Linq.Table<Supervise_SubUnitCheckRectify> Supervise_SubUnitCheckRectify
{
get
@@ -9454,6 +9479,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Work_Package> Work_Package
{
get
{
return this.GetTable<Work_Package>();
}
}
public System.Data.Linq.Table<WPQ_WPQList> WPQ_WPQList
{
get
@@ -255527,6 +255560,380 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.PreRun_SysDevice")]
public partial class PreRun_SysDevice : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _PreRunId;
private string _PreRunCode;
private string _PreRunName;
private string _ProjectId;
private System.Nullable<int> _PreRunLevel;
private string _InstallationId;
private string _ProcessesId;
private string _SystemId;
private string _SubsystemId;
private string _ParentId;
private string _Remark;
private string _AddUser;
private System.Nullable<System.DateTime> _OperateTime;
private System.Nullable<int> _Sort;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnPreRunIdChanging(string value);
partial void OnPreRunIdChanged();
partial void OnPreRunCodeChanging(string value);
partial void OnPreRunCodeChanged();
partial void OnPreRunNameChanging(string value);
partial void OnPreRunNameChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnPreRunLevelChanging(System.Nullable<int> value);
partial void OnPreRunLevelChanged();
partial void OnInstallationIdChanging(string value);
partial void OnInstallationIdChanged();
partial void OnProcessesIdChanging(string value);
partial void OnProcessesIdChanged();
partial void OnSystemIdChanging(string value);
partial void OnSystemIdChanged();
partial void OnSubsystemIdChanging(string value);
partial void OnSubsystemIdChanged();
partial void OnParentIdChanging(string value);
partial void OnParentIdChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnOperateTimeChanging(System.Nullable<System.DateTime> value);
partial void OnOperateTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
#endregion
public PreRun_SysDevice()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreRunId", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string PreRunId
{
get
{
return this._PreRunId;
}
set
{
if ((this._PreRunId != value))
{
this.OnPreRunIdChanging(value);
this.SendPropertyChanging();
this._PreRunId = value;
this.SendPropertyChanged("PreRunId");
this.OnPreRunIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreRunCode", DbType="VarChar(50)")]
public string PreRunCode
{
get
{
return this._PreRunCode;
}
set
{
if ((this._PreRunCode != value))
{
this.OnPreRunCodeChanging(value);
this.SendPropertyChanging();
this._PreRunCode = value;
this.SendPropertyChanged("PreRunCode");
this.OnPreRunCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreRunName", DbType="VarChar(50)")]
public string PreRunName
{
get
{
return this._PreRunName;
}
set
{
if ((this._PreRunName != value))
{
this.OnPreRunNameChanging(value);
this.SendPropertyChanging();
this._PreRunName = value;
this.SendPropertyChanged("PreRunName");
this.OnPreRunNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PreRunLevel", DbType="Int")]
public System.Nullable<int> PreRunLevel
{
get
{
return this._PreRunLevel;
}
set
{
if ((this._PreRunLevel != value))
{
this.OnPreRunLevelChanging(value);
this.SendPropertyChanging();
this._PreRunLevel = value;
this.SendPropertyChanged("PreRunLevel");
this.OnPreRunLevelChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationId", DbType="VarChar(50)")]
public string InstallationId
{
get
{
return this._InstallationId;
}
set
{
if ((this._InstallationId != value))
{
this.OnInstallationIdChanging(value);
this.SendPropertyChanging();
this._InstallationId = value;
this.SendPropertyChanged("InstallationId");
this.OnInstallationIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProcessesId", DbType="VarChar(50)")]
public string ProcessesId
{
get
{
return this._ProcessesId;
}
set
{
if ((this._ProcessesId != value))
{
this.OnProcessesIdChanging(value);
this.SendPropertyChanging();
this._ProcessesId = value;
this.SendPropertyChanged("ProcessesId");
this.OnProcessesIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemId", DbType="VarChar(50)")]
public string SystemId
{
get
{
return this._SystemId;
}
set
{
if ((this._SystemId != value))
{
this.OnSystemIdChanging(value);
this.SendPropertyChanging();
this._SystemId = value;
this.SendPropertyChanged("SystemId");
this.OnSystemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubsystemId", DbType="VarChar(50)")]
public string SubsystemId
{
get
{
return this._SubsystemId;
}
set
{
if ((this._SubsystemId != value))
{
this.OnSubsystemIdChanging(value);
this.SendPropertyChanging();
this._SubsystemId = value;
this.SendPropertyChanged("SubsystemId");
this.OnSubsystemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ParentId", DbType="VarChar(50)")]
public string ParentId
{
get
{
return this._ParentId;
}
set
{
if ((this._ParentId != value))
{
this.OnParentIdChanging(value);
this.SendPropertyChanging();
this._ParentId = value;
this.SendPropertyChanged("ParentId");
this.OnParentIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(150)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
public string AddUser
{
get
{
return this._AddUser;
}
set
{
if ((this._AddUser != value))
{
this.OnAddUserChanging(value);
this.SendPropertyChanging();
this._AddUser = value;
this.SendPropertyChanged("AddUser");
this.OnAddUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperateTime", DbType="DateTime")]
public System.Nullable<System.DateTime> OperateTime
{
get
{
return this._OperateTime;
}
set
{
if ((this._OperateTime != value))
{
this.OnOperateTimeChanging(value);
this.SendPropertyChanging();
this._OperateTime = value;
this.SendPropertyChanged("OperateTime");
this.OnOperateTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort", DbType="Int")]
public System.Nullable<int> Sort
{
get
{
return this._Sort;
}
set
{
if ((this._Sort != value))
{
this.OnSortChanging(value);
this.SendPropertyChanging();
this._Sort = value;
this.SendPropertyChanged("Sort");
this.OnSortChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.ProcessControl_HotProessManage")]
public partial class ProcessControl_HotProessManage : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -308838,6 +309245,236 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.SubSys_WorkPackage")]
public partial class SubSys_WorkPackage : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _SubSysId;
private string _SubSystemId;
private string _WorkPackId;
private string _WorkPackCode;
private string _Remark;
private string _AddUser;
private System.Nullable<System.DateTime> _AddTime;
private System.Nullable<int> _Sort;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnSubSysIdChanging(string value);
partial void OnSubSysIdChanged();
partial void OnSubSystemIdChanging(string value);
partial void OnSubSystemIdChanged();
partial void OnWorkPackIdChanging(string value);
partial void OnWorkPackIdChanged();
partial void OnWorkPackCodeChanging(string value);
partial void OnWorkPackCodeChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnAddTimeChanging(System.Nullable<System.DateTime> value);
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
#endregion
public SubSys_WorkPackage()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubSysId", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string SubSysId
{
get
{
return this._SubSysId;
}
set
{
if ((this._SubSysId != value))
{
this.OnSubSysIdChanging(value);
this.SendPropertyChanging();
this._SubSysId = value;
this.SendPropertyChanged("SubSysId");
this.OnSubSysIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubSystemId", DbType="VarChar(50)")]
public string SubSystemId
{
get
{
return this._SubSystemId;
}
set
{
if ((this._SubSystemId != value))
{
this.OnSubSystemIdChanging(value);
this.SendPropertyChanging();
this._SubSystemId = value;
this.SendPropertyChanged("SubSystemId");
this.OnSubSystemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackId", DbType="VarChar(50)")]
public string WorkPackId
{
get
{
return this._WorkPackId;
}
set
{
if ((this._WorkPackId != value))
{
this.OnWorkPackIdChanging(value);
this.SendPropertyChanging();
this._WorkPackId = value;
this.SendPropertyChanged("WorkPackId");
this.OnWorkPackIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackCode", DbType="VarChar(50)")]
public string WorkPackCode
{
get
{
return this._WorkPackCode;
}
set
{
if ((this._WorkPackCode != value))
{
this.OnWorkPackCodeChanging(value);
this.SendPropertyChanging();
this._WorkPackCode = value;
this.SendPropertyChanged("WorkPackCode");
this.OnWorkPackCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(150)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
public string AddUser
{
get
{
return this._AddUser;
}
set
{
if ((this._AddUser != value))
{
this.OnAddUserChanging(value);
this.SendPropertyChanging();
this._AddUser = value;
this.SendPropertyChanged("AddUser");
this.OnAddUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")]
public System.Nullable<System.DateTime> AddTime
{
get
{
return this._AddTime;
}
set
{
if ((this._AddTime != value))
{
this.OnAddTimeChanging(value);
this.SendPropertyChanging();
this._AddTime = value;
this.SendPropertyChanged("AddTime");
this.OnAddTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort", DbType="Int")]
public System.Nullable<int> Sort
{
get
{
return this._Sort;
}
set
{
if ((this._Sort != value))
{
this.OnSortChanging(value);
this.SendPropertyChanging();
this._Sort = value;
this.SendPropertyChanged("Sort");
this.OnSortChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Supervise_SubUnitCheckRectify")]
public partial class Supervise_SubUnitCheckRectify : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -398875,6 +399512,8 @@ namespace Model
private string _Remark;
private System.Nullable<int> _CnProfessionId;
private EntitySet<WBS_EquipmentMaterialType> _WBS_EquipmentMaterialType;
#region
@@ -398889,6 +399528,8 @@ namespace Model
partial void OnEquipmentMaterialBigTypeNameChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnCnProfessionIdChanging(System.Nullable<int> value);
partial void OnCnProfessionIdChanged();
#endregion
public WBS_EquipmentMaterialBigType()
@@ -398977,6 +399618,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CnProfessionId", DbType="Int")]
public System.Nullable<int> CnProfessionId
{
get
{
return this._CnProfessionId;
}
set
{
if ((this._CnProfessionId != value))
{
this.OnCnProfessionIdChanging(value);
this.SendPropertyChanging();
this._CnProfessionId = value;
this.SendPropertyChanged("CnProfessionId");
this.OnCnProfessionIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_EquipmentMaterialType_WBS_EquipmentMaterialBigType", Storage="_WBS_EquipmentMaterialType", ThisKey="EquipmentMaterialBigTypeId", OtherKey="EquipmentMaterialBigTypeId", DeleteRule="NO ACTION")]
public EntitySet<WBS_EquipmentMaterialType> WBS_EquipmentMaterialType
{
@@ -407948,6 +408609,212 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Work_Package")]
public partial class Work_Package : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _WorkPackId;
private string _WorkPackCode;
private string _WorkPackName;
private string _Remark;
private string _AddUser;
private System.Nullable<System.DateTime> _AddTime;
private System.Nullable<int> _Sort;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnWorkPackIdChanging(string value);
partial void OnWorkPackIdChanged();
partial void OnWorkPackCodeChanging(string value);
partial void OnWorkPackCodeChanged();
partial void OnWorkPackNameChanging(string value);
partial void OnWorkPackNameChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnAddTimeChanging(System.Nullable<System.DateTime> value);
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
#endregion
public Work_Package()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackId", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string WorkPackId
{
get
{
return this._WorkPackId;
}
set
{
if ((this._WorkPackId != value))
{
this.OnWorkPackIdChanging(value);
this.SendPropertyChanging();
this._WorkPackId = value;
this.SendPropertyChanged("WorkPackId");
this.OnWorkPackIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackCode", DbType="VarChar(50)")]
public string WorkPackCode
{
get
{
return this._WorkPackCode;
}
set
{
if ((this._WorkPackCode != value))
{
this.OnWorkPackCodeChanging(value);
this.SendPropertyChanging();
this._WorkPackCode = value;
this.SendPropertyChanged("WorkPackCode");
this.OnWorkPackCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackName", DbType="VarChar(50)")]
public string WorkPackName
{
get
{
return this._WorkPackName;
}
set
{
if ((this._WorkPackName != value))
{
this.OnWorkPackNameChanging(value);
this.SendPropertyChanging();
this._WorkPackName = value;
this.SendPropertyChanged("WorkPackName");
this.OnWorkPackNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(150)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
public string AddUser
{
get
{
return this._AddUser;
}
set
{
if ((this._AddUser != value))
{
this.OnAddUserChanging(value);
this.SendPropertyChanging();
this._AddUser = value;
this.SendPropertyChanged("AddUser");
this.OnAddUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")]
public System.Nullable<System.DateTime> AddTime
{
get
{
return this._AddTime;
}
set
{
if ((this._AddTime != value))
{
this.OnAddTimeChanging(value);
this.SendPropertyChanging();
this._AddTime = value;
this.SendPropertyChanged("AddTime");
this.OnAddTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sort", DbType="Int")]
public System.Nullable<int> Sort
{
get
{
return this._Sort;
}
set
{
if ((this._Sort != value))
{
this.OnSortChanging(value);
this.SendPropertyChanging();
this._Sort = value;
this.SendPropertyChanged("Sort");
this.OnSortChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.WPQ_WPQList")]
public partial class WPQ_WPQList : INotifyPropertyChanging, INotifyPropertyChanged
{