20230229
This commit is contained in:
@@ -87,5 +87,23 @@ namespace Model
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
|
||||
public DateTime? StartTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public int LearnTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public DateTime? EndTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -365560,6 +365560,12 @@ namespace Model
|
||||
|
||||
private string _AttachUrl;
|
||||
|
||||
private System.Nullable<System.DateTime> _StartTime;
|
||||
|
||||
private System.Nullable<System.DateTime> _EndTime;
|
||||
|
||||
private System.Nullable<int> _LearnTime;
|
||||
|
||||
private EntityRef<Training_Plan> _Training_Plan;
|
||||
|
||||
private EntityRef<Training_Task> _Training_Task;
|
||||
@@ -365582,6 +365588,12 @@ namespace Model
|
||||
partial void OnTrainingItemNameChanged();
|
||||
partial void OnAttachUrlChanging(string value);
|
||||
partial void OnAttachUrlChanged();
|
||||
partial void OnStartTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnStartTimeChanged();
|
||||
partial void OnEndTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnEndTimeChanged();
|
||||
partial void OnLearnTimeChanging(System.Nullable<int> value);
|
||||
partial void OnLearnTimeChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TaskItem()
|
||||
@@ -365739,6 +365751,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StartTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> StartTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StartTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StartTime != value))
|
||||
{
|
||||
this.OnStartTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StartTime = value;
|
||||
this.SendPropertyChanged("StartTime");
|
||||
this.OnStartTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EndTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> EndTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._EndTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._EndTime != value))
|
||||
{
|
||||
this.OnEndTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._EndTime = value;
|
||||
this.SendPropertyChanged("EndTime");
|
||||
this.OnEndTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LearnTime", DbType="Int")]
|
||||
public System.Nullable<int> LearnTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LearnTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LearnTime != value))
|
||||
{
|
||||
this.OnLearnTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LearnTime = value;
|
||||
this.SendPropertyChanged("LearnTime");
|
||||
this.OnLearnTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_TaskItem_Training_Plan", Storage="_Training_Plan", ThisKey="PlanId", OtherKey="PlanId", IsForeignKey=true)]
|
||||
public Training_Plan Training_Plan
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user