修改生态环保报表

This commit is contained in:
2023-07-12 17:07:47 +08:00
parent 4449a7754f
commit c13c5de7ec
18 changed files with 266 additions and 71 deletions
+48
View File
@@ -187681,6 +187681,8 @@ namespace Model
private string _UpState;
private System.Nullable<int> _Quarter;
private EntityRef<Base_Unit> _Base_Unit;
#region
@@ -187723,6 +187725,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()
@@ -188095,6 +188099,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
{
@@ -199364,6 +199388,8 @@ namespace Model
private string _Description9;
private System.Nullable<int> _Quarter;
private EntityRef<Base_Project> _Base_Project;
private EntityRef<Base_Unit> _Base_Unit;
@@ -199408,6 +199434,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()
@@ -199785,6 +199813,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
{