班前会添加装置单元
This commit is contained in:
@@ -299228,6 +299228,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _ManagePersonNum;
|
||||
|
||||
private string _InstallationId;
|
||||
|
||||
private string _InstallationName;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -299276,6 +299280,10 @@ namespace Model
|
||||
partial void OnMeetingHostManOtherChanged();
|
||||
partial void OnManagePersonNumChanging(System.Nullable<int> value);
|
||||
partial void OnManagePersonNumChanged();
|
||||
partial void OnInstallationIdChanging(string value);
|
||||
partial void OnInstallationIdChanged();
|
||||
partial void OnInstallationNameChanging(string value);
|
||||
partial void OnInstallationNameChanged();
|
||||
#endregion
|
||||
|
||||
public Meeting_ClassMeeting()
|
||||
@@ -299663,6 +299671,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationId", DbType="NVarChar(255)")]
|
||||
public string InstallationId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InstallationId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InstallationId != value))
|
||||
{
|
||||
this.OnInstallationIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InstallationId = value;
|
||||
this.SendPropertyChanged("InstallationId");
|
||||
this.OnInstallationIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationName", DbType="NVarChar(255)")]
|
||||
public string InstallationName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InstallationName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InstallationName != value))
|
||||
{
|
||||
this.OnInstallationNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InstallationName = value;
|
||||
this.SendPropertyChanged("InstallationName");
|
||||
this.OnInstallationNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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