using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class user_exam_log
{
///
/// 登录日志id
///
public string UserExamLogId { get; set; }
///
/// 账号
///
public string LoginName { get; set; }
///
/// 姓名
///
public string RealName { get; set; }
///
/// 考试名称
///
public string ExamName { get; set; }
///
/// 登录IP
///
public string LoginIP { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}