提交代码

This commit is contained in:
高飞 2023-07-24 18:13:06 +08:00
parent 597a0cae3b
commit ca3e8950ae
2 changed files with 75 additions and 2 deletions

View File

@ -92,8 +92,9 @@
<Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion> <SpecificVersion>False</SpecificVersion>
</Reference> </Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath> <SpecificVersion>False</SpecificVersion>
<HintPath>bin\Newtonsoft.Json.dll</HintPath>
</Reference> </Reference>
<Reference Include="NPOI, Version=2.5.5.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL"> <Reference Include="NPOI, Version=2.5.5.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
<HintPath>..\packages\NPOI.2.5.5\lib\net45\NPOI.dll</HintPath> <HintPath>..\packages\NPOI.2.5.5\lib\net45\NPOI.dll</HintPath>

View File

@ -44007,6 +44007,8 @@ namespace Model
private System.Nullable<System.DateTime> _UploadTime; private System.Nullable<System.DateTime> _UploadTime;
private string _DeleteTag;
#region #region
partial void OnLoaded(); partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action); partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -44047,6 +44049,8 @@ namespace Model
partial void OnAnalysisChanged(); partial void OnAnalysisChanged();
partial void OnUploadTimeChanging(System.Nullable<System.DateTime> value); partial void OnUploadTimeChanging(System.Nullable<System.DateTime> value);
partial void OnUploadTimeChanged(); partial void OnUploadTimeChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion #endregion
public Bo_Sheng_Exam() public Bo_Sheng_Exam()
@ -44414,6 +44418,26 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged; public event PropertyChangedEventHandler PropertyChanged;
@ -45831,6 +45855,8 @@ namespace Model
private string _TrainDescript; private string _TrainDescript;
private string _DeleteTag;
#region #region
partial void OnLoaded(); partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action); partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -45891,6 +45917,8 @@ namespace Model
partial void OnTrainContentChanged(); partial void OnTrainContentChanged();
partial void OnTrainDescriptChanging(string value); partial void OnTrainDescriptChanging(string value);
partial void OnTrainDescriptChanged(); partial void OnTrainDescriptChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion #endregion
public Bo_Sheng_PersonTrainRecord() public Bo_Sheng_PersonTrainRecord()
@ -46458,6 +46486,26 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged; public event PropertyChangedEventHandler PropertyChanged;
@ -48185,6 +48233,8 @@ namespace Model
private string _OperUser; private string _OperUser;
private string _DeleteTag;
#region #region
partial void OnLoaded(); partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action); partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -48229,6 +48279,8 @@ namespace Model
partial void OnOperDateChanged(); partial void OnOperDateChanged();
partial void OnOperUserChanging(string value); partial void OnOperUserChanging(string value);
partial void OnOperUserChanged(); partial void OnOperUserChanged();
partial void OnDeleteTagChanging(string value);
partial void OnDeleteTagChanged();
#endregion #endregion
public Bo_Sheng_Unit() public Bo_Sheng_Unit()
@ -48636,6 +48688,26 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DeleteTag", DbType="NVarChar(50)")]
public string DeleteTag
{
get
{
return this._DeleteTag;
}
set
{
if ((this._DeleteTag != value))
{
this.OnDeleteTagChanging(value);
this.SendPropertyChanging();
this._DeleteTag = value;
this.SendPropertyChanged("DeleteTag");
this.OnDeleteTagChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging; public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged; public event PropertyChangedEventHandler PropertyChanged;