This commit is contained in:
2026-04-08 14:03:39 +08:00
parent 7ecbc2ebc0
commit 4a1b636ce0
353 changed files with 1378 additions and 500 deletions
@@ -7,7 +7,6 @@ namespace BLL
{
public static class TestTrainingService
{
public static Model.CNPCDB db = Funs.DB;
/// <summary>
/// 根据主键获取信息
@@ -84,6 +83,7 @@ namespace BLL
/// <returns></returns>
public static List<Model.Training_TestTraining> GetTestTrainingList()
{
Model.CNPCDB db = Funs.DB;
return (from x in db.Training_TestTraining orderby x.TrainingCode select x).ToList();
}
@@ -93,6 +93,7 @@ namespace BLL
/// <returns></returns>
public static List<Model.Training_TestTraining> GetEndTestTrainingList()
{
Model.CNPCDB db = Funs.DB;
return (from x in db.Training_TestTraining
where x.IsEndLever == true
orderby x.TrainingCode