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; }
}