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 {