using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Models { /// /// 问题表 /// public class Test_QuestionInfo : EntityModel { /// /// 问题分类Id /// public int CategoryId { get; set; } /// /// 问题类型Id /// public int QuestionTypeId { get; set; } /// /// 问题 /// public string QuestionTitle { get; set; } /// /// 问题类型 /// public string QuestionType { get; set; } /// /// 问题Tag /// public string QuestionTag { get; set; } /// /// 版本 /// public string Version { get; set; } /// /// 正反记分 1是正向记分 0是反向记分 /// public int IsAddScore { get; set; } } }