From 390865d5632de70ae9ce7fd238e2513fb51fb2dc Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Tue, 5 Sep 2023 10:18:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/Model/Model.cs | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 45926b12..123eed46 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -290949,7 +290949,7 @@ namespace Model } } - [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(81)")] + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(101)")] public string Name { get @@ -293677,6 +293677,8 @@ namespace Model private string _WBSCode; + private System.Nullable _PlanCost; + private string _WorkPackageIds; private EntityRef _WBS_WorkPackage; @@ -293729,6 +293731,8 @@ namespace Model partial void OnRealEndDateChanged(); partial void OnWBSCodeChanging(string value); partial void OnWBSCodeChanged(); + partial void OnPlanCostChanging(System.Nullable value); + partial void OnPlanCostChanged(); partial void OnWorkPackageIdsChanging(string value); partial void OnWorkPackageIdsChanged(); #endregion @@ -294183,6 +294187,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanCost", DbType="Decimal(9,2)")] + public System.Nullable PlanCost + { + get + { + return this._PlanCost; + } + set + { + if ((this._PlanCost != value)) + { + this.OnPlanCostChanging(value); + this.SendPropertyChanging(); + this._PlanCost = value; + this.SendPropertyChanged("PlanCost"); + this.OnPlanCostChanged(); + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageIds", DbType="NVarChar(2000)")] public string WorkPackageIds {