统一人员资质上传功能,优化风险分级动态管控功能,优化安全管理页面看板

This commit is contained in:
2024-07-04 14:01:20 +08:00
parent b1b3bd291c
commit cc3b5d045d
40 changed files with 4801 additions and 9 deletions
+692
View File
@@ -641,9 +641,15 @@ namespace Model
partial void InsertCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
partial void UpdateCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
partial void DeleteCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
partial void InsertCostGoods_FeeRegistration(CostGoods_FeeRegistration instance);
partial void UpdateCostGoods_FeeRegistration(CostGoods_FeeRegistration instance);
partial void DeleteCostGoods_FeeRegistration(CostGoods_FeeRegistration instance);
partial void InsertCostGoods_GoodsManage(CostGoods_GoodsManage instance);
partial void UpdateCostGoods_GoodsManage(CostGoods_GoodsManage instance);
partial void DeleteCostGoods_GoodsManage(CostGoods_GoodsManage instance);
partial void InsertCostGoods_HseExpense(CostGoods_HseExpense instance);
partial void UpdateCostGoods_HseExpense(CostGoods_HseExpense instance);
partial void DeleteCostGoods_HseExpense(CostGoods_HseExpense instance);
partial void InsertCostGoods_MeasuresPlan(CostGoods_MeasuresPlan instance);
partial void UpdateCostGoods_MeasuresPlan(CostGoods_MeasuresPlan instance);
partial void DeleteCostGoods_MeasuresPlan(CostGoods_MeasuresPlan instance);
@@ -4348,6 +4354,14 @@ namespace Model
}
}
public System.Data.Linq.Table<CostGoods_FeeRegistration> CostGoods_FeeRegistration
{
get
{
return this.GetTable<CostGoods_FeeRegistration>();
}
}
public System.Data.Linq.Table<CostGoods_GoodsManage> CostGoods_GoodsManage
{
get
@@ -4356,6 +4370,14 @@ namespace Model
}
}
public System.Data.Linq.Table<CostGoods_HseExpense> CostGoods_HseExpense
{
get
{
return this.GetTable<CostGoods_HseExpense>();
}
}
public System.Data.Linq.Table<CostGoods_MeasuresPlan> CostGoods_MeasuresPlan
{
get
@@ -106241,6 +106263,188 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CostGoods_FeeRegistration")]
public partial class CostGoods_FeeRegistration : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _ProjectId;
private string _UnitId;
private System.Nullable<decimal> _Cost;
private System.Nullable<System.DateTime> _CompileDate;
private string _CompileMan;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnUnitIdChanging(string value);
partial void OnUnitIdChanged();
partial void OnCostChanging(System.Nullable<decimal> value);
partial void OnCostChanged();
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
partial void OnCompileDateChanged();
partial void OnCompileManChanging(string value);
partial void OnCompileManChanged();
#endregion
public CostGoods_FeeRegistration()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string Id
{
get
{
return this._Id;
}
set
{
if ((this._Id != value))
{
this.OnIdChanging(value);
this.SendPropertyChanging();
this._Id = value;
this.SendPropertyChanged("Id");
this.OnIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
public string UnitId
{
get
{
return this._UnitId;
}
set
{
if ((this._UnitId != value))
{
this.OnUnitIdChanging(value);
this.SendPropertyChanging();
this._UnitId = value;
this.SendPropertyChanged("UnitId");
this.OnUnitIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Cost", DbType="Decimal(18,2)")]
public System.Nullable<decimal> Cost
{
get
{
return this._Cost;
}
set
{
if ((this._Cost != value))
{
this.OnCostChanging(value);
this.SendPropertyChanging();
this._Cost = value;
this.SendPropertyChanged("Cost");
this.OnCostChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")]
public System.Nullable<System.DateTime> CompileDate
{
get
{
return this._CompileDate;
}
set
{
if ((this._CompileDate != value))
{
this.OnCompileDateChanging(value);
this.SendPropertyChanging();
this._CompileDate = value;
this.SendPropertyChanged("CompileDate");
this.OnCompileDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
public string CompileMan
{
get
{
return this._CompileMan;
}
set
{
if ((this._CompileMan != value))
{
this.OnCompileManChanging(value);
this.SendPropertyChanging();
this._CompileMan = value;
this.SendPropertyChanged("CompileMan");
this.OnCompileManChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CostGoods_GoodsManage")]
public partial class CostGoods_GoodsManage : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -106868,6 +107072,452 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CostGoods_HseExpense")]
public partial class CostGoods_HseExpense : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _ProjectId;
private string _UnitId;
private System.Nullable<System.DateTime> _PayDate;
private string _PayMonth;
private System.Nullable<decimal> _SMonthType1;
private System.Nullable<decimal> _SMonthType2;
private System.Nullable<decimal> _SMonthType3;
private System.Nullable<decimal> _SMonthType4;
private System.Nullable<decimal> _SMonthType5;
private System.Nullable<decimal> _SMonthType6;
private System.Nullable<decimal> _SMonthType7;
private System.Nullable<decimal> _SMonthType8;
private System.Nullable<decimal> _SMonthType9;
private System.Nullable<decimal> _SMonthType10;
private string _CompileMan;
private System.Nullable<System.DateTime> _CompileDate;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnUnitIdChanging(string value);
partial void OnUnitIdChanged();
partial void OnPayDateChanging(System.Nullable<System.DateTime> value);
partial void OnPayDateChanged();
partial void OnPayMonthChanging(string value);
partial void OnPayMonthChanged();
partial void OnSMonthType1Changing(System.Nullable<decimal> value);
partial void OnSMonthType1Changed();
partial void OnSMonthType2Changing(System.Nullable<decimal> value);
partial void OnSMonthType2Changed();
partial void OnSMonthType3Changing(System.Nullable<decimal> value);
partial void OnSMonthType3Changed();
partial void OnSMonthType4Changing(System.Nullable<decimal> value);
partial void OnSMonthType4Changed();
partial void OnSMonthType5Changing(System.Nullable<decimal> value);
partial void OnSMonthType5Changed();
partial void OnSMonthType6Changing(System.Nullable<decimal> value);
partial void OnSMonthType6Changed();
partial void OnSMonthType7Changing(System.Nullable<decimal> value);
partial void OnSMonthType7Changed();
partial void OnSMonthType8Changing(System.Nullable<decimal> value);
partial void OnSMonthType8Changed();
partial void OnSMonthType9Changing(System.Nullable<decimal> value);
partial void OnSMonthType9Changed();
partial void OnSMonthType10Changing(System.Nullable<decimal> value);
partial void OnSMonthType10Changed();
partial void OnCompileManChanging(string value);
partial void OnCompileManChanged();
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
partial void OnCompileDateChanged();
#endregion
public CostGoods_HseExpense()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string Id
{
get
{
return this._Id;
}
set
{
if ((this._Id != value))
{
this.OnIdChanging(value);
this.SendPropertyChanging();
this._Id = value;
this.SendPropertyChanged("Id");
this.OnIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
public string UnitId
{
get
{
return this._UnitId;
}
set
{
if ((this._UnitId != value))
{
this.OnUnitIdChanging(value);
this.SendPropertyChanging();
this._UnitId = value;
this.SendPropertyChanged("UnitId");
this.OnUnitIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PayDate", DbType="DateTime")]
public System.Nullable<System.DateTime> PayDate
{
get
{
return this._PayDate;
}
set
{
if ((this._PayDate != value))
{
this.OnPayDateChanging(value);
this.SendPropertyChanging();
this._PayDate = value;
this.SendPropertyChanged("PayDate");
this.OnPayDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PayMonth", DbType="NVarChar(50)")]
public string PayMonth
{
get
{
return this._PayMonth;
}
set
{
if ((this._PayMonth != value))
{
this.OnPayMonthChanging(value);
this.SendPropertyChanging();
this._PayMonth = value;
this.SendPropertyChanged("PayMonth");
this.OnPayMonthChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType1", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType1
{
get
{
return this._SMonthType1;
}
set
{
if ((this._SMonthType1 != value))
{
this.OnSMonthType1Changing(value);
this.SendPropertyChanging();
this._SMonthType1 = value;
this.SendPropertyChanged("SMonthType1");
this.OnSMonthType1Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType2", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType2
{
get
{
return this._SMonthType2;
}
set
{
if ((this._SMonthType2 != value))
{
this.OnSMonthType2Changing(value);
this.SendPropertyChanging();
this._SMonthType2 = value;
this.SendPropertyChanged("SMonthType2");
this.OnSMonthType2Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType3", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType3
{
get
{
return this._SMonthType3;
}
set
{
if ((this._SMonthType3 != value))
{
this.OnSMonthType3Changing(value);
this.SendPropertyChanging();
this._SMonthType3 = value;
this.SendPropertyChanged("SMonthType3");
this.OnSMonthType3Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType4", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType4
{
get
{
return this._SMonthType4;
}
set
{
if ((this._SMonthType4 != value))
{
this.OnSMonthType4Changing(value);
this.SendPropertyChanging();
this._SMonthType4 = value;
this.SendPropertyChanged("SMonthType4");
this.OnSMonthType4Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType5", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType5
{
get
{
return this._SMonthType5;
}
set
{
if ((this._SMonthType5 != value))
{
this.OnSMonthType5Changing(value);
this.SendPropertyChanging();
this._SMonthType5 = value;
this.SendPropertyChanged("SMonthType5");
this.OnSMonthType5Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType6", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType6
{
get
{
return this._SMonthType6;
}
set
{
if ((this._SMonthType6 != value))
{
this.OnSMonthType6Changing(value);
this.SendPropertyChanging();
this._SMonthType6 = value;
this.SendPropertyChanged("SMonthType6");
this.OnSMonthType6Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType7", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType7
{
get
{
return this._SMonthType7;
}
set
{
if ((this._SMonthType7 != value))
{
this.OnSMonthType7Changing(value);
this.SendPropertyChanging();
this._SMonthType7 = value;
this.SendPropertyChanged("SMonthType7");
this.OnSMonthType7Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType8", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType8
{
get
{
return this._SMonthType8;
}
set
{
if ((this._SMonthType8 != value))
{
this.OnSMonthType8Changing(value);
this.SendPropertyChanging();
this._SMonthType8 = value;
this.SendPropertyChanged("SMonthType8");
this.OnSMonthType8Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType9", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType9
{
get
{
return this._SMonthType9;
}
set
{
if ((this._SMonthType9 != value))
{
this.OnSMonthType9Changing(value);
this.SendPropertyChanging();
this._SMonthType9 = value;
this.SendPropertyChanged("SMonthType9");
this.OnSMonthType9Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SMonthType10", DbType="Decimal(18,2)")]
public System.Nullable<decimal> SMonthType10
{
get
{
return this._SMonthType10;
}
set
{
if ((this._SMonthType10 != value))
{
this.OnSMonthType10Changing(value);
this.SendPropertyChanging();
this._SMonthType10 = value;
this.SendPropertyChanged("SMonthType10");
this.OnSMonthType10Changed();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
public string CompileMan
{
get
{
return this._CompileMan;
}
set
{
if ((this._CompileMan != value))
{
this.OnCompileManChanging(value);
this.SendPropertyChanging();
this._CompileMan = value;
this.SendPropertyChanged("CompileMan");
this.OnCompileManChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")]
public System.Nullable<System.DateTime> CompileDate
{
get
{
return this._CompileDate;
}
set
{
if ((this._CompileDate != value))
{
this.OnCompileDateChanging(value);
this.SendPropertyChanging();
this._CompileDate = value;
this.SendPropertyChanged("CompileDate");
this.OnCompileDateChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CostGoods_MeasuresPlan")]
public partial class CostGoods_MeasuresPlan : INotifyPropertyChanging, INotifyPropertyChanged
{
@@ -333725,6 +334375,8 @@ namespace Model
private System.Nullable<bool> _IsSafetyMonitoring;
private System.Nullable<bool> _IsBlacklist;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
private EntitySet<Accident_AccidentReportOtherItem> _Accident_AccidentReportOtherItem;
@@ -333909,6 +334561,8 @@ namespace Model
partial void OnRawPasswordChanged();
partial void OnIsSafetyMonitoringChanging(System.Nullable<bool> value);
partial void OnIsSafetyMonitoringChanged();
partial void OnIsBlacklistChanging(System.Nullable<bool> value);
partial void OnIsBlacklistChanged();
#endregion
public SitePerson_Person()
@@ -335197,6 +335851,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsBlacklist", DbType="Bit")]
public System.Nullable<bool> IsBlacklist
{
get
{
return this._IsBlacklist;
}
set
{
if ((this._IsBlacklist != value))
{
this.OnIsBlacklistChanging(value);
this.SendPropertyChanging();
this._IsBlacklist = value;
this.SendPropertyChanged("IsBlacklist");
this.OnIsBlacklistChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentPersonRecord_SitePerson_Person", Storage="_Accident_AccidentPersonRecord", ThisKey="PersonId", OtherKey="PersonId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentPersonRecord> Accident_AccidentPersonRecord
{
@@ -431353,6 +432027,8 @@ namespace Model
private System.Nullable<System.DateTime> _RealNameAddTime;
private System.Nullable<bool> _IsBlacklist;
public View_SitePerson_Person()
{
}
@@ -432508,6 +433184,22 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsBlacklist", DbType="Bit")]
public System.Nullable<bool> IsBlacklist
{
get
{
return this._IsBlacklist;
}
set
{
if ((this._IsBlacklist != value))
{
this._IsBlacklist = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Solution_LargerHazardListItem")]