报表管理:安全、职业健康危害因素清单补充事故分类
This commit is contained in:
+50
-2
@@ -88199,7 +88199,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitName", DbType="NVarChar(200)")]
|
||||
public string UnitName
|
||||
{
|
||||
get
|
||||
@@ -88239,7 +88239,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(200)")]
|
||||
public string ProjectName
|
||||
{
|
||||
get
|
||||
@@ -171049,6 +171049,8 @@ namespace Model
|
||||
|
||||
private string _UnitProjectName;
|
||||
|
||||
private string _AccidentType;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -171109,6 +171111,8 @@ namespace Model
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnUnitProjectNameChanging(string value);
|
||||
partial void OnUnitProjectNameChanged();
|
||||
partial void OnAccidentTypeChanging(string value);
|
||||
partial void OnAccidentTypeChanged();
|
||||
#endregion
|
||||
|
||||
public HazardFactor_OccHealth()
|
||||
@@ -171676,6 +171680,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccidentType", DbType="NVarChar(200)")]
|
||||
public string AccidentType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AccidentType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AccidentType != value))
|
||||
{
|
||||
this.OnAccidentTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AccidentType = value;
|
||||
this.SendPropertyChanged("AccidentType");
|
||||
this.OnAccidentTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -171759,6 +171783,8 @@ namespace Model
|
||||
|
||||
private string _UnitProjectName;
|
||||
|
||||
private string _AccidentType;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -171819,6 +171845,8 @@ namespace Model
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnUnitProjectNameChanging(string value);
|
||||
partial void OnUnitProjectNameChanged();
|
||||
partial void OnAccidentTypeChanging(string value);
|
||||
partial void OnAccidentTypeChanged();
|
||||
#endregion
|
||||
|
||||
public HazardFactor_Safety()
|
||||
@@ -172386,6 +172414,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccidentType", DbType="NVarChar(200)")]
|
||||
public string AccidentType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AccidentType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AccidentType != value))
|
||||
{
|
||||
this.OnAccidentTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AccidentType = value;
|
||||
this.SendPropertyChanged("AccidentType");
|
||||
this.OnAccidentTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user