20230904 wbs维度数据仓库实现

This commit is contained in:
2023-09-04 17:13:55 +08:00
parent e1e1d5394a
commit 78871bae92
21 changed files with 950 additions and 223 deletions
+96
View File
@@ -291441,6 +291441,8 @@ namespace Model
private System.Nullable<System.DateTime> _Months;
private string _InitWorkPackageCode;
private string _WorkPackageCode;
private string _PackageContent;
@@ -291453,6 +291455,8 @@ namespace Model
private System.Nullable<decimal> _RealProjectQuantity;
private System.Nullable<decimal> _PlanCost;
private System.Nullable<double> _TotalPlanNum;
private System.Nullable<double> _TotalThisNum;
@@ -291521,6 +291525,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InitWorkPackageCode", DbType="NVarChar(50)")]
public string InitWorkPackageCode
{
get
{
return this._InitWorkPackageCode;
}
set
{
if ((this._InitWorkPackageCode != value))
{
this._InitWorkPackageCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageCode", DbType="NVarChar(30)")]
public string WorkPackageCode
{
@@ -291617,6 +291637,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanCost", DbType="Decimal(18,2)")]
public System.Nullable<decimal> PlanCost
{
get
{
return this._PlanCost;
}
set
{
if ((this._PlanCost != value))
{
this._PlanCost = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalPlanNum", DbType="Float")]
public System.Nullable<double> TotalPlanNum
{
@@ -291758,6 +291794,10 @@ namespace Model
private System.Nullable<System.DateTime> _Months;
private string _InitWorkPackageCode;
private System.Nullable<decimal> _PlanCost;
private System.Nullable<double> _PlanNum;
private System.Nullable<double> _ThisNum;
@@ -291842,6 +291882,38 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InitWorkPackageCode", DbType="NVarChar(50)")]
public string InitWorkPackageCode
{
get
{
return this._InitWorkPackageCode;
}
set
{
if ((this._InitWorkPackageCode != value))
{
this._InitWorkPackageCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanCost", DbType="Decimal(18,2)")]
public System.Nullable<decimal> PlanCost
{
get
{
return this._PlanCost;
}
set
{
if ((this._PlanCost != value))
{
this._PlanCost = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanNum", DbType="Float")]
public System.Nullable<double> PlanNum
{
@@ -293605,6 +293677,8 @@ namespace Model
private string _WBSCode;
private string _WorkPackageIds;
private EntityRef<WBS_WorkPackage> _WBS_WorkPackage;
#region
@@ -293655,6 +293729,8 @@ namespace Model
partial void OnRealEndDateChanged();
partial void OnWBSCodeChanging(string value);
partial void OnWBSCodeChanged();
partial void OnWorkPackageIdsChanging(string value);
partial void OnWorkPackageIdsChanged();
#endregion
public WBS_ControlItemAndCycle()
@@ -294107,6 +294183,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageIds", DbType="NVarChar(2000)")]
public string WorkPackageIds
{
get
{
return this._WorkPackageIds;
}
set
{
if ((this._WorkPackageIds != value))
{
this.OnWorkPackageIdsChanging(value);
this.SendPropertyChanging();
this._WorkPackageIds = value;
this.SendPropertyChanged("WorkPackageIds");
this.OnWorkPackageIdsChanged();
}
}
}
[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
{