using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class study_record
{
///
/// 学习id
///
public string StudyId { get; set; }
///
/// 学习名称
///
public string StudyName { get; set; }
///
/// 学习分类
///
public string StudyClass { get; set; }
///
/// 学习简介
///
public string StudySynopsis { get; set; }
///
/// 进度
///
public string Schedule { get; set; }
///
/// 最新学习时间
///
public DateTime StudyTime { get; set; }
///
/// 发布时间
///
public DateTime ReleaseTime { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 评语
///
public string Comment { get; set; }
///
/// 评语人
///
public string Reviewer { get; set; }
///
/// 评语时间
///
public DateTime? ReviewerTime { get; set; }
}
}