班前会议添加情况说明
This commit is contained in:
@@ -299232,6 +299232,8 @@ namespace Model
|
||||
|
||||
private string _InstallationName;
|
||||
|
||||
private string _Declare;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -299284,6 +299286,8 @@ namespace Model
|
||||
partial void OnInstallationIdChanged();
|
||||
partial void OnInstallationNameChanging(string value);
|
||||
partial void OnInstallationNameChanged();
|
||||
partial void OnDeclareChanging(string value);
|
||||
partial void OnDeclareChanged();
|
||||
#endregion
|
||||
|
||||
public Meeting_ClassMeeting()
|
||||
@@ -299711,6 +299715,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Declare", DbType="NVarChar(500)")]
|
||||
public string Declare
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Declare;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Declare != value))
|
||||
{
|
||||
this.OnDeclareChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Declare = value;
|
||||
this.SendPropertyChanged("Declare");
|
||||
this.OnDeclareChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Meeting_ClassMeeting_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user