项目用户添加是否教育人字段

This commit is contained in:
geh
2026-01-20 16:34:07 +08:00
parent 9555acd424
commit 96ca57977d
11 changed files with 131 additions and 27 deletions
+24
View File
@@ -325199,6 +325199,8 @@ namespace Model
private string _System;
private System.Nullable<bool> _IsEducator;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -325231,6 +325233,8 @@ namespace Model
partial void OnViceCNProfessionalIdChanged();
partial void OnSystemChanging(string value);
partial void OnSystemChanged();
partial void OnIsEducatorChanging(System.Nullable<bool> value);
partial void OnIsEducatorChanged();
#endregion
public Project_ProjectUser()
@@ -325473,6 +325477,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsEducator", DbType="Bit")]
public System.Nullable<bool> IsEducator
{
get
{
return this._IsEducator;
}
set
{
if ((this._IsEducator != value))
{
this.OnIsEducatorChanging(value);
this.SendPropertyChanging();
this._IsEducator = value;
this.SendPropertyChanged("IsEducator");
this.OnIsEducatorChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Project_ProjectUser_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{