1
This commit is contained in:
@@ -394714,6 +394714,10 @@ namespace Model
|
||||
|
||||
private string _WorkPostIds;
|
||||
|
||||
private System.Nullable<int> _LearningTime;
|
||||
|
||||
private string _TestTrainingIds;
|
||||
|
||||
private EntitySet<Person_TrainingTask> _Person_TrainingTask;
|
||||
|
||||
private EntityRef<Training_CompanyTraining> _Training_CompanyTraining;
|
||||
@@ -394738,6 +394742,10 @@ namespace Model
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnWorkPostIdsChanging(string value);
|
||||
partial void OnWorkPostIdsChanged();
|
||||
partial void OnLearningTimeChanging(System.Nullable<int> value);
|
||||
partial void OnLearningTimeChanged();
|
||||
partial void OnTestTrainingIdsChanging(string value);
|
||||
partial void OnTestTrainingIdsChanged();
|
||||
#endregion
|
||||
|
||||
public Training_CompanyTrainingItem()
|
||||
@@ -394911,6 +394919,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LearningTime", DbType="Int")]
|
||||
public System.Nullable<int> LearningTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LearningTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LearningTime != value))
|
||||
{
|
||||
this.OnLearningTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LearningTime = value;
|
||||
this.SendPropertyChanged("LearningTime");
|
||||
this.OnLearningTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestTrainingIds", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string TestTrainingIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestTrainingIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestTrainingIds != value))
|
||||
{
|
||||
this.OnTestTrainingIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestTrainingIds = value;
|
||||
this.SendPropertyChanged("TestTrainingIds");
|
||||
this.OnTestTrainingIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Person_TrainingTask_Training_CompanyTrainingItem", Storage="_Person_TrainingTask", ThisKey="CompanyTrainingItemId", OtherKey="CompanyTrainingItemId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Person_TrainingTask> Person_TrainingTask
|
||||
{
|
||||
@@ -395679,6 +395727,10 @@ namespace Model
|
||||
|
||||
private string _Cycle;
|
||||
|
||||
private string _DepartIds;
|
||||
|
||||
private string _DepartNames;
|
||||
|
||||
private EntitySet<EduTrain_TrainRecord> _EduTrain_TrainRecord;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -395741,6 +395793,10 @@ namespace Model
|
||||
partial void OnQRCodeUrlChanged();
|
||||
partial void OnCycleChanging(string value);
|
||||
partial void OnCycleChanged();
|
||||
partial void OnDepartIdsChanging(string value);
|
||||
partial void OnDepartIdsChanged();
|
||||
partial void OnDepartNamesChanging(string value);
|
||||
partial void OnDepartNamesChanged();
|
||||
#endregion
|
||||
|
||||
public Training_Plan()
|
||||
@@ -396173,6 +396229,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartIds", DbType="NVarChar(2000)")]
|
||||
public string DepartIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartIds != value))
|
||||
{
|
||||
this.OnDepartIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepartIds = value;
|
||||
this.SendPropertyChanged("DepartIds");
|
||||
this.OnDepartIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartNames", DbType="NVarChar(2000)")]
|
||||
public string DepartNames
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartNames;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartNames != value))
|
||||
{
|
||||
this.OnDepartNamesChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepartNames = value;
|
||||
this.SendPropertyChanged("DepartNames");
|
||||
this.OnDepartNamesChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_EduTrain_TrainRecord_Training_Plan", Storage="_EduTrain_TrainRecord", ThisKey="PlanId", OtherKey="PlanId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<EduTrain_TrainRecord> EduTrain_TrainRecord
|
||||
{
|
||||
@@ -397162,6 +397258,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _VideoProgress;
|
||||
|
||||
private string _CompanyTrainingItemId;
|
||||
|
||||
private EntityRef<SitePerson_Person> _SitePerson_Person;
|
||||
|
||||
private EntityRef<Training_Plan> _Training_Plan;
|
||||
@@ -397194,6 +397292,8 @@ namespace Model
|
||||
partial void OnLearnTimeChanged();
|
||||
partial void OnVideoProgressChanging(System.Nullable<int> value);
|
||||
partial void OnVideoProgressChanged();
|
||||
partial void OnCompanyTrainingItemIdChanging(string value);
|
||||
partial void OnCompanyTrainingItemIdChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TaskItem()
|
||||
@@ -397436,6 +397536,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompanyTrainingItemId", DbType="NVarChar(100)")]
|
||||
public string CompanyTrainingItemId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompanyTrainingItemId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompanyTrainingItemId != value))
|
||||
{
|
||||
this.OnCompanyTrainingItemIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompanyTrainingItemId = value;
|
||||
this.SendPropertyChanged("CompanyTrainingItemId");
|
||||
this.OnCompanyTrainingItemIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_TaskItem_SitePerson_Person", Storage="_SitePerson_Person", ThisKey="PersonId", OtherKey="PersonId", IsForeignKey=true)]
|
||||
public SitePerson_Person SitePerson_Person
|
||||
{
|
||||
@@ -397613,6 +397733,8 @@ namespace Model
|
||||
|
||||
private int _JValue;
|
||||
|
||||
private string _TrainTypeId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -397675,6 +397797,8 @@ namespace Model
|
||||
partial void OnMValueChanged();
|
||||
partial void OnJValueChanging(int value);
|
||||
partial void OnJValueChanged();
|
||||
partial void OnTrainTypeIdChanging(string value);
|
||||
partial void OnTrainTypeIdChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TestPlan()
|
||||
@@ -398179,6 +398303,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainTypeId", DbType="NVarChar(50)")]
|
||||
public string TrainTypeId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TrainTypeId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TrainTypeId != value))
|
||||
{
|
||||
this.OnTrainTypeIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TrainTypeId = value;
|
||||
this.SendPropertyChanged("TrainTypeId");
|
||||
this.OnTrainTypeIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_TestPlan_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -398644,6 +398788,10 @@ namespace Model
|
||||
|
||||
private int _Duration;
|
||||
|
||||
private string _Signature;
|
||||
|
||||
private string _Fingerprint;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<SitePerson_Person> _SitePerson_Person;
|
||||
@@ -398678,6 +398826,10 @@ namespace Model
|
||||
partial void OnIsFiledChanged();
|
||||
partial void OnDurationChanging(int value);
|
||||
partial void OnDurationChanged();
|
||||
partial void OnSignatureChanging(string value);
|
||||
partial void OnSignatureChanged();
|
||||
partial void OnFingerprintChanging(string value);
|
||||
partial void OnFingerprintChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TestRecord()
|
||||
@@ -398921,6 +399073,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Signature", DbType="NVarChar(1000)")]
|
||||
public string Signature
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Signature;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Signature != value))
|
||||
{
|
||||
this.OnSignatureChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Signature = value;
|
||||
this.SendPropertyChanged("Signature");
|
||||
this.OnSignatureChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Fingerprint", DbType="NVarChar(1000)")]
|
||||
public string Fingerprint
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Fingerprint;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Fingerprint != value))
|
||||
{
|
||||
this.OnFingerprintChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Fingerprint = value;
|
||||
this.SendPropertyChanged("Fingerprint");
|
||||
this.OnFingerprintChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_TestRecord_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -399969,6 +400161,10 @@ namespace Model
|
||||
|
||||
private string _EItemEng;
|
||||
|
||||
private string _DepartNames;
|
||||
|
||||
private string _DepartIds;
|
||||
|
||||
private EntityRef<Training_TestTraining> _Training_TestTraining;
|
||||
|
||||
private EntityRef<Training_TestTraining> _Training;
|
||||
@@ -400021,6 +400217,10 @@ namespace Model
|
||||
partial void OnDItemEngChanged();
|
||||
partial void OnEItemEngChanging(string value);
|
||||
partial void OnEItemEngChanged();
|
||||
partial void OnDepartNamesChanging(string value);
|
||||
partial void OnDepartNamesChanged();
|
||||
partial void OnDepartIdsChanging(string value);
|
||||
partial void OnDepartIdsChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TestTrainingItem()
|
||||
@@ -400474,6 +400674,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartNames", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string DepartNames
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartNames;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartNames != value))
|
||||
{
|
||||
this.OnDepartNamesChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepartNames = value;
|
||||
this.SendPropertyChanged("DepartNames");
|
||||
this.OnDepartNamesChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartIds", DbType="NVarChar(4000)")]
|
||||
public string DepartIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartIds != value))
|
||||
{
|
||||
this.OnDepartIdsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepartIds = value;
|
||||
this.SendPropertyChanged("DepartIds");
|
||||
this.OnDepartIdsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_TestTrainingItem_Training_TestTraining", Storage="_Training_TestTraining", ThisKey="TrainingId", OtherKey="TrainingId", IsForeignKey=true)]
|
||||
public Training_TestTraining Training_TestTraining
|
||||
{
|
||||
@@ -400887,6 +401127,8 @@ namespace Model
|
||||
|
||||
private string _UpState;
|
||||
|
||||
private System.Nullable<int> _LearningTime;
|
||||
|
||||
private EntitySet<Training_PlanItem> _Training_PlanItem;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -400929,6 +401171,8 @@ namespace Model
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnUpStateChanging(string value);
|
||||
partial void OnUpStateChanged();
|
||||
partial void OnLearningTimeChanging(System.Nullable<int> value);
|
||||
partial void OnLearningTimeChanged();
|
||||
#endregion
|
||||
|
||||
public Training_TrainingItem()
|
||||
@@ -401267,6 +401511,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_LearningTime", DbType="Int")]
|
||||
public System.Nullable<int> LearningTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._LearningTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._LearningTime != value))
|
||||
{
|
||||
this.OnLearningTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._LearningTime = value;
|
||||
this.SendPropertyChanged("LearningTime");
|
||||
this.OnLearningTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Training_PlanItem_Training_TrainingItem", Storage="_Training_PlanItem", ThisKey="TrainingItemId", OtherKey="TrainingEduItemId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Training_PlanItem> Training_PlanItem
|
||||
{
|
||||
@@ -456705,6 +456969,10 @@ namespace Model
|
||||
|
||||
private string _AnswerItems;
|
||||
|
||||
private string _DepartIds;
|
||||
|
||||
private string _DepartNames;
|
||||
|
||||
public View_Training_TestTrainingItem()
|
||||
{
|
||||
}
|
||||
@@ -457092,6 +457360,38 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartIds", DbType="NVarChar(4000)")]
|
||||
public string DepartIds
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartIds;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartIds != value))
|
||||
{
|
||||
this._DepartIds = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartNames", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string DepartNames
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartNames;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartNames != value))
|
||||
{
|
||||
this._DepartNames = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Training_TrainingItem")]
|
||||
|
||||
Reference in New Issue
Block a user