提交代码
This commit is contained in:
@@ -128299,6 +128299,8 @@ namespace Model
|
||||
|
||||
private string _UnitWorkIds;
|
||||
|
||||
private string _QRCodeUrl;
|
||||
|
||||
private EntitySet<EduTrain_TrainRecordDetail> _EduTrain_TrainRecordDetail;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -128359,6 +128361,8 @@ namespace Model
|
||||
partial void OnCNProfessionalIdChanged();
|
||||
partial void OnUnitWorkIdsChanging(string value);
|
||||
partial void OnUnitWorkIdsChanged();
|
||||
partial void OnQRCodeUrlChanging(string value);
|
||||
partial void OnQRCodeUrlChanged();
|
||||
#endregion
|
||||
|
||||
public EduTrain_TrainRecord()
|
||||
@@ -128843,6 +128847,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QRCodeUrl", DbType="NVarChar(2000)")]
|
||||
public string QRCodeUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._QRCodeUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._QRCodeUrl != value))
|
||||
{
|
||||
this.OnQRCodeUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._QRCodeUrl = value;
|
||||
this.SendPropertyChanged("QRCodeUrl");
|
||||
this.OnQRCodeUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_EduTrain_TrainDetail_EduTrain_Training", Storage="_EduTrain_TrainRecordDetail", ThisKey="TrainingId", OtherKey="TrainingId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<EduTrain_TrainRecordDetail> EduTrain_TrainRecordDetail
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user