using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Competition.Mysql.Other { public class achievement_user { /// /// 成绩id /// public string AchievementId { get; set; } /// /// 考试id /// public string ExamId { get; set; } /// /// 考试名称 /// public string ExamName { get; set; } /// /// 用户id /// public string UserId { get; set; } /// /// 登录名 /// public string LoginName { get; set; } /// /// 姓名 /// public string RealName { get; set; } /// /// 交卷时间 /// public DateTime? ExamEndTime { get; set; } /// /// 总分 /// public decimal? TotalScore { get; set; } /// /// 省id /// public string ProvinceId { get; set; } /// /// 省 /// public string ProvinceName { get; set; } /// /// 市id /// public string CityId { get; set; } /// /// 市 /// public string CityName { get; set; } /// /// 开始考试时间 /// public DateTime? ExamStartTime { get; set; } /// /// 备用1 /// public string Remark1 { get; set; } /// /// 备用2 /// public string Remark2 { get; set; } /// /// 备用3 /// public string Remark3 { get; set; } /// /// 备用4 /// public string Remark4 { get; set; } /// /// 备用5 /// public string Remark5 { get; set; } /// /// 所属市 /// public string OwnCity { get; set; } /// /// 单位名称 /// public string unit_name { get; set; } } }