using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Competition.Mysql.Other { public class train_record { /// /// 实训id /// public string ExamId { get; set; } /// /// 实训名称 /// public string ExamName { get; set; } /// /// 实训简介 /// public string Synopsis { get; set; } /// /// 封面路径 /// public string CoverPath { get; set; } /// /// 评语 /// public string Comment { get; set; } /// /// 评语人 /// public string Reviewer { get; set; } /// /// 评语时间 /// public DateTime? ReviewerTime { get; set; } /// /// 天气 /// public string Weather { get; set; } } }