修改五环安全月报
This commit is contained in:
@@ -1445,6 +1445,9 @@ namespace Model
|
||||
partial void InsertManager_HazardSortC(Manager_HazardSortC instance);
|
||||
partial void UpdateManager_HazardSortC(Manager_HazardSortC instance);
|
||||
partial void DeleteManager_HazardSortC(Manager_HazardSortC instance);
|
||||
partial void InsertManager_HiddenDanger(Manager_HiddenDanger instance);
|
||||
partial void UpdateManager_HiddenDanger(Manager_HiddenDanger instance);
|
||||
partial void DeleteManager_HiddenDanger(Manager_HiddenDanger instance);
|
||||
partial void InsertManager_HseCostC(Manager_HseCostC instance);
|
||||
partial void UpdateManager_HseCostC(Manager_HseCostC instance);
|
||||
partial void DeleteManager_HseCostC(Manager_HseCostC instance);
|
||||
@@ -6515,6 +6518,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Manager_HiddenDanger> Manager_HiddenDanger
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Manager_HiddenDanger>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Manager_HseCostC> Manager_HseCostC
|
||||
{
|
||||
get
|
||||
@@ -234627,6 +234638,212 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Manager_HiddenDanger")]
|
||||
public partial class Manager_HiddenDanger : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _MonthReportId;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private System.Nullable<int> _CommonlyNum;
|
||||
|
||||
private System.Nullable<int> _MajorNum;
|
||||
|
||||
private string _ReRate;
|
||||
|
||||
private System.Nullable<int> _SortIndex;
|
||||
|
||||
#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 OnMonthReportIdChanging(string value);
|
||||
partial void OnMonthReportIdChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnCommonlyNumChanging(System.Nullable<int> value);
|
||||
partial void OnCommonlyNumChanged();
|
||||
partial void OnMajorNumChanging(System.Nullable<int> value);
|
||||
partial void OnMajorNumChanged();
|
||||
partial void OnReRateChanging(string value);
|
||||
partial void OnReRateChanged();
|
||||
partial void OnSortIndexChanging(System.Nullable<int> value);
|
||||
partial void OnSortIndexChanged();
|
||||
#endregion
|
||||
|
||||
public Manager_HiddenDanger()
|
||||
{
|
||||
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="_MonthReportId", DbType="NVarChar(50)")]
|
||||
public string MonthReportId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MonthReportId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MonthReportId != value))
|
||||
{
|
||||
this.OnMonthReportIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MonthReportId = value;
|
||||
this.SendPropertyChanged("MonthReportId");
|
||||
this.OnMonthReportIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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="_CommonlyNum", DbType="Int")]
|
||||
public System.Nullable<int> CommonlyNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CommonlyNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CommonlyNum != value))
|
||||
{
|
||||
this.OnCommonlyNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CommonlyNum = value;
|
||||
this.SendPropertyChanged("CommonlyNum");
|
||||
this.OnCommonlyNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MajorNum", DbType="Int")]
|
||||
public System.Nullable<int> MajorNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MajorNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MajorNum != value))
|
||||
{
|
||||
this.OnMajorNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MajorNum = value;
|
||||
this.SendPropertyChanged("MajorNum");
|
||||
this.OnMajorNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReRate", DbType="NVarChar(50)")]
|
||||
public string ReRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReRate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReRate != value))
|
||||
{
|
||||
this.OnReRateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReRate = value;
|
||||
this.SendPropertyChanged("ReRate");
|
||||
this.OnReRateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortIndex", DbType="Int")]
|
||||
public System.Nullable<int> SortIndex
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SortIndex;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SortIndex != value))
|
||||
{
|
||||
this.OnSortIndexChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SortIndex = value;
|
||||
this.SendPropertyChanged("SortIndex");
|
||||
this.OnSortIndexChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Manager_HseCostC")]
|
||||
public partial class Manager_HseCostC : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -245077,6 +245294,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _TotalHseManhoursYear;
|
||||
|
||||
private System.Nullable<int> _MonthHdangerCount;
|
||||
|
||||
private System.Nullable<int> _YearHdangerCount;
|
||||
|
||||
private EntitySet<Manager_AccidentSortC> _Manager_AccidentSortC;
|
||||
|
||||
private EntitySet<Manager_CheckDetailSortC> _Manager_CheckDetailSortC;
|
||||
@@ -245365,6 +245586,10 @@ namespace Model
|
||||
partial void OnEndDateChanged();
|
||||
partial void OnTotalHseManhoursYearChanging(System.Nullable<int> value);
|
||||
partial void OnTotalHseManhoursYearChanged();
|
||||
partial void OnMonthHdangerCountChanging(System.Nullable<int> value);
|
||||
partial void OnMonthHdangerCountChanged();
|
||||
partial void OnYearHdangerCountChanging(System.Nullable<int> value);
|
||||
partial void OnYearHdangerCountChanged();
|
||||
#endregion
|
||||
|
||||
public Manager_MonthReportC()
|
||||
@@ -247441,6 +247666,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthHdangerCount", DbType="Int")]
|
||||
public System.Nullable<int> MonthHdangerCount
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MonthHdangerCount;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MonthHdangerCount != value))
|
||||
{
|
||||
this.OnMonthHdangerCountChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MonthHdangerCount = value;
|
||||
this.SendPropertyChanged("MonthHdangerCount");
|
||||
this.OnMonthHdangerCountChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_YearHdangerCount", DbType="Int")]
|
||||
public System.Nullable<int> YearHdangerCount
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._YearHdangerCount;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._YearHdangerCount != value))
|
||||
{
|
||||
this.OnYearHdangerCountChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._YearHdangerCount = value;
|
||||
this.SendPropertyChanged("YearHdangerCount");
|
||||
this.OnYearHdangerCountChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Manager_AccidentCSort_Manager_MonthReport", Storage="_Manager_AccidentSortC", ThisKey="MonthReportId", OtherKey="MonthReportId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Manager_AccidentSortC> Manager_AccidentSortC
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user