1111-002-gaofei
This commit is contained in:
parent
1f1d11cb42
commit
9d1a4e20b1
|
@ -51,3 +51,6 @@ EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
alter table [dbo].[HJGL_FirstOKRate] add Months datetime null
|
||||||
|
alter table [dbo].[HJGL_FinishRate] add Months datetime null
|
||||||
|
GO
|
|
@ -40,6 +40,7 @@ namespace BLL
|
||||||
Type = item.Type,
|
Type = item.Type,
|
||||||
Code = item.Code,
|
Code = item.Code,
|
||||||
Name = item.Name,
|
Name = item.Name,
|
||||||
|
Months = item.Months,
|
||||||
TotalNum = item.TotalNum,
|
TotalNum = item.TotalNum,
|
||||||
FinishNum = item.FinishNum,
|
FinishNum = item.FinishNum,
|
||||||
Rate = item.Rate,
|
Rate = item.Rate,
|
||||||
|
@ -95,6 +96,7 @@ namespace BLL
|
||||||
Type = item.Type,
|
Type = item.Type,
|
||||||
Code = item.Code,
|
Code = item.Code,
|
||||||
Name = item.Name,
|
Name = item.Name,
|
||||||
|
Months = item.Months,
|
||||||
TotalNum = item.TotalNum,
|
TotalNum = item.TotalNum,
|
||||||
OKNum = item.OKNum,
|
OKNum = item.OKNum,
|
||||||
Rate = item.Rate,
|
Rate = item.Rate,
|
||||||
|
|
|
@ -116699,6 +116699,8 @@ namespace Model
|
||||||
|
|
||||||
private string _Rate;
|
private string _Rate;
|
||||||
|
|
||||||
|
private System.Nullable<System.DateTime> _Months;
|
||||||
|
|
||||||
private EntityRef<Base_Project> _Base_Project;
|
private EntityRef<Base_Project> _Base_Project;
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
#region 可扩展性方法定义
|
||||||
|
@ -116721,6 +116723,8 @@ namespace Model
|
||||||
partial void OnFinishNumChanged();
|
partial void OnFinishNumChanged();
|
||||||
partial void OnRateChanging(string value);
|
partial void OnRateChanging(string value);
|
||||||
partial void OnRateChanged();
|
partial void OnRateChanged();
|
||||||
|
partial void OnMonthsChanging(System.Nullable<System.DateTime> value);
|
||||||
|
partial void OnMonthsChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public HJGL_FinishRate()
|
public HJGL_FinishRate()
|
||||||
|
@ -116893,6 +116897,26 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Months", DbType="DateTime")]
|
||||||
|
public System.Nullable<System.DateTime> Months
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Months;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._Months != value))
|
||||||
|
{
|
||||||
|
this.OnMonthsChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._Months = value;
|
||||||
|
this.SendPropertyChanged("Months");
|
||||||
|
this.OnMonthsChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_FinishRate_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_FinishRate_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||||
public Base_Project Base_Project
|
public Base_Project Base_Project
|
||||||
{
|
{
|
||||||
|
@ -116970,6 +116994,8 @@ namespace Model
|
||||||
|
|
||||||
private string _Rate;
|
private string _Rate;
|
||||||
|
|
||||||
|
private System.Nullable<System.DateTime> _Months;
|
||||||
|
|
||||||
private EntityRef<Base_Project> _Base_Project;
|
private EntityRef<Base_Project> _Base_Project;
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
#region 可扩展性方法定义
|
||||||
|
@ -116992,6 +117018,8 @@ namespace Model
|
||||||
partial void OnOKNumChanged();
|
partial void OnOKNumChanged();
|
||||||
partial void OnRateChanging(string value);
|
partial void OnRateChanging(string value);
|
||||||
partial void OnRateChanged();
|
partial void OnRateChanged();
|
||||||
|
partial void OnMonthsChanging(System.Nullable<System.DateTime> value);
|
||||||
|
partial void OnMonthsChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public HJGL_FirstOKRate()
|
public HJGL_FirstOKRate()
|
||||||
|
@ -117164,6 +117192,26 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Months", DbType="DateTime")]
|
||||||
|
public System.Nullable<System.DateTime> Months
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Months;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._Months != value))
|
||||||
|
{
|
||||||
|
this.OnMonthsChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._Months = value;
|
||||||
|
this.SendPropertyChanged("Months");
|
||||||
|
this.OnMonthsChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_FirstOKRate_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_FirstOKRate_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||||
public Base_Project Base_Project
|
public Base_Project Base_Project
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue