安全报表增加系统外工时统计
This commit is contained in:
@@ -227254,6 +227254,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _EnvironmenNum;
|
||||
|
||||
private System.Nullable<decimal> _OutSideUnitWorkNum;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private EntityRef<Information_MillionsMonthlyReport> _Information_MillionsMonthlyReport;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -227332,6 +227338,12 @@ namespace Model
|
||||
partial void OnDeathAccidentLossHourChanged();
|
||||
partial void OnEnvironmenNumChanging(System.Nullable<int> value);
|
||||
partial void OnEnvironmenNumChanged();
|
||||
partial void OnOutSideUnitWorkNumChanging(System.Nullable<decimal> value);
|
||||
partial void OnOutSideUnitWorkNumChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
#endregion
|
||||
|
||||
public Information_MillionsMonthlyReportItem()
|
||||
@@ -228064,6 +228076,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutSideUnitWorkNum", DbType="Decimal(18,4)")]
|
||||
public System.Nullable<decimal> OutSideUnitWorkNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._OutSideUnitWorkNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._OutSideUnitWorkNum != value))
|
||||
{
|
||||
this.OnOutSideUnitWorkNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._OutSideUnitWorkNum = value;
|
||||
this.SendPropertyChanged("OutSideUnitWorkNum");
|
||||
this.OnOutSideUnitWorkNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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="_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.AssociationAttribute(Name="FK_Information_MillionsMonthlyReportItem_Information_MillionsMonthlyReport", Storage="_Information_MillionsMonthlyReport", ThisKey="MillionsMonthlyReportId", OtherKey="MillionsMonthlyReportId", IsForeignKey=true)]
|
||||
public Information_MillionsMonthlyReport Information_MillionsMonthlyReport
|
||||
{
|
||||
@@ -239724,6 +239796,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _SoleDutyNum;
|
||||
|
||||
private System.Nullable<decimal> _OutSideUnitWorkNum;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -239844,6 +239918,8 @@ namespace Model
|
||||
partial void OnCommissionerNumChanged();
|
||||
partial void OnSoleDutyNumChanging(System.Nullable<int> value);
|
||||
partial void OnSoleDutyNumChanged();
|
||||
partial void OnOutSideUnitWorkNumChanging(System.Nullable<decimal> value);
|
||||
partial void OnOutSideUnitWorkNumChanged();
|
||||
#endregion
|
||||
|
||||
public InformationProject_MillionsMonthlyReport()
|
||||
@@ -240981,6 +241057,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutSideUnitWorkNum", DbType="Decimal(18,4)")]
|
||||
public System.Nullable<decimal> OutSideUnitWorkNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._OutSideUnitWorkNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._OutSideUnitWorkNum != value))
|
||||
{
|
||||
this.OnOutSideUnitWorkNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._OutSideUnitWorkNum = value;
|
||||
this.SendPropertyChanged("OutSideUnitWorkNum");
|
||||
this.OnOutSideUnitWorkNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_InformationProject_MillionsMonthlyReport_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -324705,6 +324801,8 @@ namespace Model
|
||||
|
||||
private string _QRCodeAttachUrl;
|
||||
|
||||
private System.Nullable<bool> _IsOutSideUnit;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -324745,6 +324843,8 @@ namespace Model
|
||||
partial void OnCQMS_OrganizationPicChanged();
|
||||
partial void OnQRCodeAttachUrlChanging(string value);
|
||||
partial void OnQRCodeAttachUrlChanged();
|
||||
partial void OnIsOutSideUnitChanging(System.Nullable<bool> value);
|
||||
partial void OnIsOutSideUnitChanged();
|
||||
#endregion
|
||||
|
||||
public Project_ProjectUnit()
|
||||
@@ -325082,6 +325182,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsOutSideUnit", DbType="Bit")]
|
||||
public System.Nullable<bool> IsOutSideUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsOutSideUnit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsOutSideUnit != value))
|
||||
{
|
||||
this.OnIsOutSideUnitChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsOutSideUnit = value;
|
||||
this.SendPropertyChanged("IsOutSideUnit");
|
||||
this.OnIsOutSideUnitChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Project_ProjectUnit_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user