定制版企业安全报表增加内容
This commit is contained in:
@@ -218653,6 +218653,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _SoleDutyNum;
|
||||
|
||||
private System.Nullable<int> _KeyWorkNum;
|
||||
|
||||
private System.Nullable<int> _KeyWorkOKNum;
|
||||
|
||||
private string _KeyWorkOKRate;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
|
||||
private EntitySet<Information_MillionsMonthlyReportItem> _Information_MillionsMonthlyReportItem;
|
||||
@@ -218723,6 +218729,12 @@ namespace Model
|
||||
partial void OnCommissionerNumChanged();
|
||||
partial void OnSoleDutyNumChanging(System.Nullable<int> value);
|
||||
partial void OnSoleDutyNumChanged();
|
||||
partial void OnKeyWorkNumChanging(System.Nullable<int> value);
|
||||
partial void OnKeyWorkNumChanged();
|
||||
partial void OnKeyWorkOKNumChanging(System.Nullable<int> value);
|
||||
partial void OnKeyWorkOKNumChanged();
|
||||
partial void OnKeyWorkOKRateChanging(string value);
|
||||
partial void OnKeyWorkOKRateChanged();
|
||||
#endregion
|
||||
|
||||
public Information_MillionsMonthlyReport()
|
||||
@@ -219356,6 +219368,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkNum", DbType="Int")]
|
||||
public System.Nullable<int> KeyWorkNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkNum != value))
|
||||
{
|
||||
this.OnKeyWorkNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._KeyWorkNum = value;
|
||||
this.SendPropertyChanged("KeyWorkNum");
|
||||
this.OnKeyWorkNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkOKNum", DbType="Int")]
|
||||
public System.Nullable<int> KeyWorkOKNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkOKNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkOKNum != value))
|
||||
{
|
||||
this.OnKeyWorkOKNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._KeyWorkOKNum = value;
|
||||
this.SendPropertyChanged("KeyWorkOKNum");
|
||||
this.OnKeyWorkOKNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkOKRate", DbType="NVarChar(20)")]
|
||||
public string KeyWorkOKRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkOKRate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkOKRate != value))
|
||||
{
|
||||
this.OnKeyWorkOKRateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._KeyWorkOKRate = value;
|
||||
this.SendPropertyChanged("KeyWorkOKRate");
|
||||
this.OnKeyWorkOKRateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Information_MillionsMonthlyReport_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
|
||||
public Base_Unit Base_Unit
|
||||
{
|
||||
@@ -478823,6 +478895,12 @@ namespace Model
|
||||
|
||||
private string _HandleMan;
|
||||
|
||||
private System.Nullable<int> _KeyWorkNum;
|
||||
|
||||
private System.Nullable<int> _KeyWorkOKNum;
|
||||
|
||||
private string _KeyWorkOKRate;
|
||||
|
||||
private string _UserName;
|
||||
|
||||
public View_Information_MillionsMonthlyReport()
|
||||
@@ -479117,6 +479195,54 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkNum", DbType="Int")]
|
||||
public System.Nullable<int> KeyWorkNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkNum != value))
|
||||
{
|
||||
this._KeyWorkNum = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkOKNum", DbType="Int")]
|
||||
public System.Nullable<int> KeyWorkOKNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkOKNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkOKNum != value))
|
||||
{
|
||||
this._KeyWorkOKNum = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_KeyWorkOKRate", DbType="NVarChar(20)")]
|
||||
public string KeyWorkOKRate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._KeyWorkOKRate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._KeyWorkOKRate != value))
|
||||
{
|
||||
this._KeyWorkOKRate = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserName", DbType="NVarChar(50)")]
|
||||
public string UserName
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user