必修查询表

master
xiaochanghai 11 months ago
parent d4e6188ff6
commit 6d09f17782
  1. 504
      Model/Tiobon.Web.pdm
  2. 4
      Tiobon.Core.Services/Ghre/Ghre_RequiredCourseServices.cs

File diff suppressed because it is too large Load Diff

@ -96,10 +96,10 @@ public class Ghre_RequiredCourseServices : BaseServices<Ghre_RequiredCourse, Ghr
entitys.ForEach(async x =>
{
x.RequiredClassLabel = await GetParaLabel("TrainingRequiredClass", x.RequiredClass);
//x.RequiredClassLabel = await GetParaLabel("TrainingRequiredClass", x.RequiredClass);
x.CourseStatusLabel = await GetParaLabel("TrainingCourseStatus", x.CourseStatus);
x.StudyStatusLabel = await GetParaLabel("TrainingStudyStatus", x.StudyStatus);
x.IsPassLabel = x.IsPass == true ? "是" : "否";
//x.IsPassLabel = x.IsPass == true ? "是" : "否";
x.InStatusLabel = x.InStatus == "1" ? "在职" : null;
x.InStatusLabel = x.InStatus == "2" ? "离职" : null;

Loading…
Cancel
Save