关联摄像头

This commit is contained in:
2023-02-01 16:23:55 +08:00
parent 1d18cfbbf1
commit 9cd1860db1
16 changed files with 829 additions and 69 deletions
+84 -36
View File
@@ -23849,6 +23849,10 @@ namespace Model
private System.Nullable<decimal> _Progress;
private string _MonitorPW;
private string _MonitorId;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -24467,6 +24471,10 @@ namespace Model
partial void OnProjectState2Changed();
partial void OnProgressChanging(System.Nullable<decimal> value);
partial void OnProgressChanged();
partial void OnMonitorPWChanging(string value);
partial void OnMonitorPWChanged();
partial void OnMonitorIdChanging(string value);
partial void OnMonitorIdChanged();
#endregion
public Base_Project()
@@ -25378,6 +25386,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")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{
@@ -389192,10 +389240,6 @@ namespace Model
private string _WorkPostNames;
private string _DepartIds;
private string _DepartNames;
private string _AItem;
private string _BItem;
@@ -389218,6 +389262,10 @@ namespace Model
private string _AnswerItems;
private string _DepartIds;
private string _DepartNames;
public View_Training_TestTrainingItem()
{
}
@@ -389430,38 +389478,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartIds", DbType="NVarChar(4000)")]
public string DepartIds
{
get
{
return this._DepartIds;
}
set
{
if ((this._DepartIds != value))
{
this._DepartIds = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartNames", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string DepartNames
{
get
{
return this._DepartNames;
}
set
{
if ((this._DepartNames != value))
{
this._DepartNames = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AItem", DbType="NVarChar(500)")]
public string AItem
{
@@ -389637,6 +389653,38 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartIds", DbType="NVarChar(4000)")]
public string DepartIds
{
get
{
return this._DepartIds;
}
set
{
if ((this._DepartIds != value))
{
this._DepartIds = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartNames", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string DepartNames
{
get
{
return this._DepartNames;
}
set
{
if ((this._DepartNames != value))
{
this._DepartNames = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Training_TrainingItem")]