This commit is contained in:
李鹏飞 2024-06-03 14:24:39 +08:00
parent b675dc1cb6
commit d2670e3774
3 changed files with 9 additions and 0 deletions

Binary file not shown.

View File

@ -37,6 +37,7 @@ namespace BLL
TrainTypeName = db.Base_TrainType.FirstOrDefault(b => b.TrainTypeId == y.TrainTypeId).TrainTypeName,
TrainLevelName = db.Base_TrainLevel.FirstOrDefault(b => b.TrainLevelId == y.TrainLevelId).TrainLevelName,
PlanStatesName = y.States == "3" ? "已完成" : "培训中",
TaskStatesName = x.States == "2" ? "已完成" : "培训中",
TrainingItemCode = getTrainingItemCode(y.PlanId)
}).ToList();

View File

@ -48,6 +48,14 @@ namespace Model
set;
}
/// <summary>
/// 培训任务状态
/// </summary>
public string TaskStatesName
{
get;
set;
}
/// <summary>
/// 培训计划时间
/// </summary>
public string TrainStartDate