提交质量修改

This commit is contained in:
高飞 2023-03-16 14:37:39 +08:00
parent 7f238f724f
commit eef27faf84
1 changed files with 24 additions and 0 deletions

View File

@ -181368,6 +181368,8 @@ namespace Model
private string _RewardAndPunishDecision;
private string _AttachUrl;
private EntityRef<Base_Project> _Base_Project;
private EntitySet<RewardAndPunish_RewardAndPunishApprove> _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
{