集团项目编号
This commit is contained in:
parent
d2cedd6da9
commit
5f04bcf574
|
@ -24215,6 +24215,8 @@ namespace Model
|
||||||
|
|
||||||
private string _MonitorId;
|
private string _MonitorId;
|
||||||
|
|
||||||
|
private string _ProjectNum;
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||||
|
@ -24837,6 +24839,8 @@ namespace Model
|
||||||
partial void OnMonitorPWChanged();
|
partial void OnMonitorPWChanged();
|
||||||
partial void OnMonitorIdChanging(string value);
|
partial void OnMonitorIdChanging(string value);
|
||||||
partial void OnMonitorIdChanged();
|
partial void OnMonitorIdChanged();
|
||||||
|
partial void OnProjectNumChanging(string value);
|
||||||
|
partial void OnProjectNumChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public Base_Project()
|
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")]
|
[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
|
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue