From eef27faf84274c871854153aa77b0ed416cc627c Mon Sep 17 00:00:00 2001 From: gaofei <181547018@qq.com> Date: Thu, 16 Mar 2023 14:37:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E8=B4=A8=E9=87=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/Model/Model.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 876c2161..0ab33041 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -181368,6 +181368,8 @@ namespace Model private string _RewardAndPunishDecision; + private string _AttachUrl; + private EntityRef _Base_Project; private EntitySet _RewardAndPunish_RewardAndPunishApprove; @@ -181398,6 +181400,8 @@ namespace Model partial void OnCompileDateChanged(); partial void OnRewardAndPunishDecisionChanging(string value); partial void OnRewardAndPunishDecisionChanged(); + partial void OnAttachUrlChanging(string value); + partial void OnAttachUrlChanged(); #endregion public RewardAndPunish_RewardAndPunish() @@ -181631,6 +181635,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttachUrl", DbType="NVarChar(1000)")] + public string AttachUrl + { + get + { + return this._AttachUrl; + } + set + { + if ((this._AttachUrl != value)) + { + this.OnAttachUrlChanging(value); + this.SendPropertyChanging(); + this._AttachUrl = value; + this.SendPropertyChanged("AttachUrl"); + this.OnAttachUrlChanged(); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_RewardAndPunish_RewardAndPunish_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)] public Base_Project Base_Project {