集团项目编号

This commit is contained in:
李超 2023-03-16 20:13:17 +08:00
parent d2cedd6da9
commit 5f04bcf574
1 changed files with 24 additions and 0 deletions

View File

@ -24215,6 +24215,8 @@ namespace Model
private string _MonitorId;
private string _ProjectNum;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@ -24837,6 +24839,8 @@ namespace Model
partial void OnMonitorPWChanged();
partial void OnMonitorIdChanging(string value);
partial void OnMonitorIdChanged();
partial void OnProjectNumChanging(string value);
partial void OnProjectNumChanged();
#endregion
public Base_Project()
@ -25788,6 +25792,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectNum", DbType="VarChar(50)")]
public string ProjectNum
{
get
{
return this._ProjectNum;
}
set
{
if ((this._ProjectNum != value))
{
this.OnProjectNumChanging(value);
this.SendPropertyChanging();
this._ProjectNum = value;
this.SendPropertyChanged("ProjectNum");
this.OnProjectNumChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{