20230922
This commit is contained in:
@@ -93,7 +93,7 @@ namespace Model
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public int LearnTime
|
||||
public int? LearnTime
|
||||
{
|
||||
get;
|
||||
set;
|
||||
@@ -103,7 +103,11 @@ namespace Model
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
|
||||
public int? VideoProgress
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -183342,6 +183342,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsUsed;
|
||||
|
||||
private string _SpecialEquipmentName;
|
||||
|
||||
private EntityRef<Base_SpecialEquipment> _Base_SpecialEquipment;
|
||||
|
||||
private EntityRef<InApproveManager_GeneralEquipmentIn> _InApproveManager_GeneralEquipmentIn;
|
||||
@@ -183364,6 +183366,8 @@ namespace Model
|
||||
partial void OnCertificateNumChanged();
|
||||
partial void OnIsUsedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsUsedChanged();
|
||||
partial void OnSpecialEquipmentNameChanging(string value);
|
||||
partial void OnSpecialEquipmentNameChanged();
|
||||
#endregion
|
||||
|
||||
public InApproveManager_GeneralEquipmentInItem()
|
||||
@@ -183521,6 +183525,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SpecialEquipmentName", DbType="NVarChar(50)")]
|
||||
public string SpecialEquipmentName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SpecialEquipmentName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SpecialEquipmentName != value))
|
||||
{
|
||||
this.OnSpecialEquipmentNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SpecialEquipmentName = value;
|
||||
this.SendPropertyChanged("SpecialEquipmentName");
|
||||
this.OnSpecialEquipmentNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_InApproveManager_GeneralEquipmentInItem_Base_SpecialEquipment", Storage="_Base_SpecialEquipment", ThisKey="SpecialEquipmentId", OtherKey="SpecialEquipmentId", IsForeignKey=true)]
|
||||
public Base_SpecialEquipment Base_SpecialEquipment
|
||||
{
|
||||
@@ -365614,6 +365638,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _LearnTime;
|
||||
|
||||
private System.Nullable<int> _VideoProgress;
|
||||
|
||||
private EntityRef<Training_Plan> _Training_Plan;
|
||||
|
||||
private EntityRef<Training_Task> _Training_Task;
|
||||
@@ -365642,6 +365668,8 @@ namespace Model
|
||||
partial void OnEndTimeChanged();
|
||||
partial void OnLearnTimeChanging(System.Nullable<int> value);
|
||||
partial void OnLearnTimeChanged();
|
||||
partial void OnVideoProgressChanging(System.Nullable<int> value);
|
||||
partial void OnVideoProgressChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TaskItem()
|
||||
@@ -365859,6 +365887,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VideoProgress", DbType="Int")]
|
||||
public System.Nullable<int> VideoProgress
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._VideoProgress;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._VideoProgress != value))
|
||||
{
|
||||
this.OnVideoProgressChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._VideoProgress = value;
|
||||
this.SendPropertyChanged("VideoProgress");
|
||||
this.OnVideoProgressChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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