项目用户添加是否教育人字段
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user