namespace Tiobon.Core.Model;
public class Ghre_OpenClassScore
{
public string Id { get; set; }
///
/// 工号
///
public string StaffNo { get; set; }
///
/// 姓名
///
public string StaffName { get; set; }
///
/// 部门
///
public string DeptName { get; set; }
///
/// 出席状态
///
public string AttendStatus { get; set; }
///
/// 缺席原因
///
public string AbsenceReason { get; set; }
///
/// 打卡时间
///
public string CheckInTime { get; set; }
///
/// 线上得分
///
public decimal? Score { get; set; } = 0;
///
/// 调整分
///
public decimal? AdjustScore { get; set; } = 0;
///
/// 考试分数
///
public decimal? TotalScore { get; set; } = 0;
///
/// 实操分
///
public decimal? ActualScore { get; set; } = 0;
///
/// 卷面合格
///
public bool? IsPass { get; set; }
///
/// 卷面合格
///
public string IsPassLabel { get; set; }
///
/// 最终是否合格
///
public bool? FinallyIsPass { get; set; }
///
/// 最终是否合格
///
public string FinallyIsPassLabel { get; set; }
///
/// 重考次数
///
public int? RetakeTimes { get; set; } = 0;
///
/// 批改评语
///
public string Comment { get; set; }
}
public class Ghre_OpenClassSchedule1
{
public string SceneName { get; set; }
///
/// 是否可以签到
///
public bool IsCheckIn { get; set; } = false;
///
/// 是否可以签退
///
public bool IsCheckOut { get; set; } = false;
public string Status { get; set; }
public string AttendType { get; set; }
public List Details { get; set; }
}
public class Ghre_OpenClassScheduleDeatil
{
public long? Id { get; set; }
///
/// 课程ID
///
public long? CourseId { get; set; }
///
/// 讲师ID
///
public long? TeacherId { get; set; }
///
/// 培训地点
///
public string Address { get; set; }
///
/// 开始时间
///
public DateTime? StartTime { get; set; }
///
/// 结束时间
///
public DateTime? EndTime { get; set; }
///
/// 开始时间
///
public DateTime? StartTime1 { get; set; }
///
/// 结束时间
///
public DateTime? EndTime1 { get; set; }
///
/// 备注
///
public string RemarkSz { get; set; }
///
/// 时间
///
public string Time { get; set; }
///
/// 课程名称
///
public string CourseName { get; set; }
public DateTime? CheckInTime { get; set; }
public DateTime? CheckOutTime { get; set; }
///
/// 状态,缺席:Absence,出席:Attend,当前课程:Current,待开课:WaitStart
///
public string Status { get; set; } = "Absence";
}