修改质量验收穿透数据统计

This commit is contained in:
2023-07-21 14:51:05 +08:00
parent 500cb73a84
commit df904cd642
41 changed files with 774 additions and 73 deletions
+154 -10
View File
@@ -11394,7 +11394,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(200)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(2000)")]
public string ApproveIdea
{
get
@@ -98100,7 +98100,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderCode", DbType="NVarChar(1000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderCode", DbType="NVarChar(2000)")]
public string CanWelderCode
{
get
@@ -98120,7 +98120,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderId", DbType="NVarChar(3000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderId", DbType="NVarChar(4000)")]
public string CanWelderId
{
get
@@ -148681,7 +148681,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(500)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(3000)")]
public string AttentPerson
{
get
@@ -209256,7 +209256,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RewardAndPunishDecision", DbType="NVarChar(100)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RewardAndPunishDecision", DbType="NVarChar(200)")]
public string RewardAndPunishDecision
{
get
@@ -220735,7 +220735,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string WorkAreaId
{
get
@@ -268080,7 +268080,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderCode", DbType="NVarChar(1000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderCode", DbType="NVarChar(2000)")]
public string CanWelderCode
{
get
@@ -268096,7 +268096,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderId", DbType="NVarChar(3000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CanWelderId", DbType="NVarChar(4000)")]
public string CanWelderId
{
get
@@ -282561,7 +282561,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string WorkAreaId
{
get
@@ -283486,7 +283486,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string WorkAreaId
{
get
@@ -289725,6 +289725,8 @@ namespace Model
private System.Nullable<decimal> _Costs;
private string _CheckAcceptType;
private EntityRef<WBS_WorkPackage> _WBS_WorkPackage;
#region
@@ -289769,6 +289771,8 @@ namespace Model
partial void OnPlanCompleteDateChanged();
partial void OnCostsChanging(System.Nullable<decimal> value);
partial void OnCostsChanged();
partial void OnCheckAcceptTypeChanging(string value);
partial void OnCheckAcceptTypeChanged();
#endregion
public WBS_ControlItemAndCycle()
@@ -290161,6 +290165,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckAcceptType", DbType="Char(1)")]
public string CheckAcceptType
{
get
{
return this._CheckAcceptType;
}
set
{
if ((this._CheckAcceptType != value))
{
this.OnCheckAcceptTypeChanging(value);
this.SendPropertyChanging();
this._CheckAcceptType = value;
this.SendPropertyChanged("CheckAcceptType");
this.OnCheckAcceptTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemAndCycle_WBS_ControlItemAndCycle", Storage="_WBS_WorkPackage", ThisKey="WorkPackageId", OtherKey="WorkPackageId", IsForeignKey=true)]
public WBS_WorkPackage WBS_WorkPackage
{
@@ -290242,6 +290266,8 @@ namespace Model
private string _ClauseNo;
private string _CheckAcceptType;
private EntityRef<WBS_WorkPackageInit> _WBS_WorkPackageInit;
#region
@@ -290268,6 +290294,8 @@ namespace Model
partial void OnStandardChanged();
partial void OnClauseNoChanging(string value);
partial void OnClauseNoChanged();
partial void OnCheckAcceptTypeChanging(string value);
partial void OnCheckAcceptTypeChanged();
#endregion
public WBS_ControlItemInit()
@@ -290480,6 +290508,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckAcceptType", DbType="Char(1)")]
public string CheckAcceptType
{
get
{
return this._CheckAcceptType;
}
set
{
if ((this._CheckAcceptType != value))
{
this.OnCheckAcceptTypeChanging(value);
this.SendPropertyChanging();
this._CheckAcceptType = value;
this.SendPropertyChanged("CheckAcceptType");
this.OnCheckAcceptTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemInit_WBS_WorkPackageInit", Storage="_WBS_WorkPackageInit", ThisKey="WorkPackageCode", OtherKey="WorkPackageCode", IsForeignKey=true)]
public WBS_WorkPackageInit WBS_WorkPackageInit
{
@@ -290565,6 +290613,8 @@ namespace Model
private System.Nullable<int> _CheckNum;
private string _CheckAcceptType;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -290593,6 +290643,8 @@ namespace Model
partial void OnClauseNoChanged();
partial void OnCheckNumChanging(System.Nullable<int> value);
partial void OnCheckNumChanged();
partial void OnCheckAcceptTypeChanging(string value);
partial void OnCheckAcceptTypeChanged();
#endregion
public WBS_ControlItemProject()
@@ -290840,6 +290892,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckAcceptType", DbType="Char(1)")]
public string CheckAcceptType
{
get
{
return this._CheckAcceptType;
}
set
{
if ((this._CheckAcceptType != value))
{
this.OnCheckAcceptTypeChanging(value);
this.SendPropertyChanging();
this._CheckAcceptType = value;
this.SendPropertyChanged("CheckAcceptType");
this.OnCheckAcceptTypeChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -292333,6 +292405,8 @@ namespace Model
private System.Nullable<decimal> _Costs;
private string _SubItemType;
private EntitySet<WBS_ControlItemAndCycle> _WBS_ControlItemAndCycle;
private EntityRef<WBS_UnitWork> _WBS_UnitWork;
@@ -292375,6 +292449,8 @@ namespace Model
partial void OnIsApproveChanged();
partial void OnCostsChanging(System.Nullable<decimal> value);
partial void OnCostsChanged();
partial void OnSubItemTypeChanging(string value);
partial void OnSubItemTypeChanged();
#endregion
public WBS_WorkPackage()
@@ -292728,6 +292804,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubItemType", DbType="Char(1)")]
public string SubItemType
{
get
{
return this._SubItemType;
}
set
{
if ((this._SubItemType != value))
{
this.OnSubItemTypeChanging(value);
this.SendPropertyChanging();
this._SubItemType = value;
this.SendPropertyChanged("SubItemType");
this.OnSubItemTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemAndCycle_WBS_ControlItemAndCycle", Storage="_WBS_ControlItemAndCycle", ThisKey="WorkPackageId", OtherKey="WorkPackageId", DeleteRule="NO ACTION")]
public EntitySet<WBS_ControlItemAndCycle> WBS_ControlItemAndCycle
{
@@ -292826,6 +292922,8 @@ namespace Model
private string _ProjectType;
private string _SubItemType;
private EntitySet<WBS_ControlItemInit> _WBS_ControlItemInit;
#region
@@ -292844,6 +292942,8 @@ namespace Model
partial void OnPackageCodeChanged();
partial void OnProjectTypeChanging(string value);
partial void OnProjectTypeChanged();
partial void OnSubItemTypeChanging(string value);
partial void OnSubItemTypeChanged();
#endregion
public WBS_WorkPackageInit()
@@ -292972,6 +293072,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubItemType", DbType="Char(1)")]
public string SubItemType
{
get
{
return this._SubItemType;
}
set
{
if ((this._SubItemType != value))
{
this.OnSubItemTypeChanging(value);
this.SendPropertyChanging();
this._SubItemType = value;
this.SendPropertyChanged("SubItemType");
this.OnSubItemTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_ControlItemInit_WBS_WorkPackageInit", Storage="_WBS_ControlItemInit", ThisKey="WorkPackageCode", OtherKey="WorkPackageCode", DeleteRule="NO ACTION")]
public EntitySet<WBS_ControlItemInit> WBS_ControlItemInit
{
@@ -293038,6 +293158,8 @@ namespace Model
private string _ProjectType;
private string _SubItemType;
private EntityRef<Base_Project> _Base_Project;
#region
@@ -293058,6 +293180,8 @@ namespace Model
partial void OnPackageCodeChanged();
partial void OnProjectTypeChanging(string value);
partial void OnProjectTypeChanged();
partial void OnSubItemTypeChanging(string value);
partial void OnSubItemTypeChanged();
#endregion
public WBS_WorkPackageProject()
@@ -293210,6 +293334,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubItemType", DbType="Char(1)")]
public string SubItemType
{
get
{
return this._SubItemType;
}
set
{
if ((this._SubItemType != value))
{
this.OnSubItemTypeChanging(value);
this.SendPropertyChanging();
this._SubItemType = value;
this.SendPropertyChanged("SubItemType");
this.OnSubItemTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_WBS_WorkPackageProject_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{