五环大屏;进度管理;等
This commit is contained in:
@@ -220236,6 +220236,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _SortIndex;
|
||||
|
||||
private System.Nullable<bool> _IsOK;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Base_Unit> _Base_Unit;
|
||||
@@ -220270,6 +220272,8 @@ namespace Model
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnSortIndexChanging(System.Nullable<int> value);
|
||||
partial void OnSortIndexChanged();
|
||||
partial void OnIsOKChanging(System.Nullable<bool> value);
|
||||
partial void OnIsOKChanged();
|
||||
#endregion
|
||||
|
||||
public JDGL_MonthPlan()
|
||||
@@ -220532,6 +220536,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsOK", DbType="Bit")]
|
||||
public System.Nullable<bool> IsOK
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsOK;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsOK != value))
|
||||
{
|
||||
this.OnIsOKChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsOK = value;
|
||||
this.SendPropertyChanged("IsOK");
|
||||
this.OnIsOKChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_JDGL_MonthPlan_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user