提交代码
This commit is contained in:
parent
1bb46425bd
commit
e8939d4628
|
@ -1,2 +1,3 @@
|
||||||
alter table [dbo].[Base_Project] add MonitorPW nvarchar(50) null
|
alter table [dbo].[Base_Project] add MonitorPW nvarchar(50) null
|
||||||
alter table [dbo].[Base_Project] add MonitorId nvarchar(50) null
|
alter table [dbo].[Base_Project] add MonitorId nvarchar(50) null
|
||||||
|
GO
|
|
@ -25033,6 +25033,10 @@ namespace Model
|
||||||
|
|
||||||
private string _ProjPhase;
|
private string _ProjPhase;
|
||||||
|
|
||||||
|
private string _MonitorPW;
|
||||||
|
|
||||||
|
private string _MonitorId;
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||||
|
|
||||||
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
|
||||||
|
@ -25691,6 +25695,10 @@ namespace Model
|
||||||
partial void OnProjTypeChanged();
|
partial void OnProjTypeChanged();
|
||||||
partial void OnProjPhaseChanging(string value);
|
partial void OnProjPhaseChanging(string value);
|
||||||
partial void OnProjPhaseChanged();
|
partial void OnProjPhaseChanged();
|
||||||
|
partial void OnMonitorPWChanging(string value);
|
||||||
|
partial void OnMonitorPWChanged();
|
||||||
|
partial void OnMonitorIdChanging(string value);
|
||||||
|
partial void OnMonitorIdChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public Base_Project()
|
public Base_Project()
|
||||||
|
@ -26755,6 +26763,46 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonitorPW", DbType="NVarChar(50)")]
|
||||||
|
public string MonitorPW
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._MonitorPW;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._MonitorPW != value))
|
||||||
|
{
|
||||||
|
this.OnMonitorPWChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._MonitorPW = value;
|
||||||
|
this.SendPropertyChanged("MonitorPW");
|
||||||
|
this.OnMonitorPWChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonitorId", DbType="NVarChar(50)")]
|
||||||
|
public string MonitorId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._MonitorId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._MonitorId != value))
|
||||||
|
{
|
||||||
|
this.OnMonitorIdChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._MonitorId = value;
|
||||||
|
this.SendPropertyChanged("MonitorId");
|
||||||
|
this.OnMonitorIdChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[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