修改生态环保报表

This commit is contained in:
2023-07-12 15:58:52 +08:00
parent 0e6ee80134
commit ae9fcbdda5
19 changed files with 268 additions and 67 deletions
+49 -5
View File
@@ -29,11 +29,7 @@ namespace Model
#region
partial void OnCreated();
partial void OnCreated()
{
this.CommandTimeout = 3600;
}
partial void InsertAccident_AccidentHandle(Accident_AccidentHandle instance);
partial void InsertAccident_AccidentHandle(Accident_AccidentHandle instance);
partial void UpdateAccident_AccidentHandle(Accident_AccidentHandle instance);
partial void DeleteAccident_AccidentHandle(Accident_AccidentHandle instance);
partial void InsertAccident_AccidentPersonRecord(Accident_AccidentPersonRecord instance);
@@ -175223,6 +175219,8 @@ namespace Model
private string _UpState;
private System.Nullable<int> _Quarter;
private EntityRef<Base_Unit> _Base_Unit;
#region
@@ -175265,6 +175263,8 @@ namespace Model
partial void OnDescription9Changed();
partial void OnUpStateChanging(string value);
partial void OnUpStateChanged();
partial void OnQuarterChanging(System.Nullable<int> value);
partial void OnQuarterChanged();
#endregion
public Information_EPSummaryReport()
@@ -175637,6 +175637,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quarter", DbType="Int")]
public System.Nullable<int> Quarter
{
get
{
return this._Quarter;
}
set
{
if ((this._Quarter != value))
{
this.OnQuarterChanging(value);
this.SendPropertyChanging();
this._Quarter = value;
this.SendPropertyChanged("Quarter");
this.OnQuarterChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Information_EPSummaryReport_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
public Base_Unit Base_Unit
{
@@ -186906,6 +186926,8 @@ namespace Model
private string _Description9;
private System.Nullable<int> _Quarter;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -186950,6 +186972,8 @@ namespace Model
partial void OnDescription8Changed();
partial void OnDescription9Changing(string value);
partial void OnDescription9Changed();
partial void OnQuarterChanging(System.Nullable<int> value);
partial void OnQuarterChanged();
#endregion
public InformationProject_EPSummaryReport()
@@ -187327,6 +187351,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Quarter", DbType="Int")]
public System.Nullable<int> Quarter
{
get
{
return this._Quarter;
}
set
{
if ((this._Quarter != value))
{
this.OnQuarterChanging(value);
this.SendPropertyChanging();
this._Quarter = value;
this.SendPropertyChanged("Quarter");
this.OnQuarterChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_InformationProject_EPSummaryReport_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{