using System; using System.Collections.Generic; using System.Linq; using SqlSugar; using LearningOfficer.OA.Core.Entities; namespace LearningOfficer.OA.Core.Entities.OA.Solution { /// /// 解决方案-问题记录 /// [SugarTable("question_info")] public class QuestionInfo : BaseEntity { /// /// 备 注:任务id /// 默认值: /// [SugarColumn(ColumnName = "task_id" )] public long TaskId { get; set; } /// /// 备 注:任务类型枚举值 /// 默认值: /// [SugarColumn(ColumnName = "task_enum" )] public int TaskEnum { get; set; } /// /// 备 注:问题枚举值 /// 默认值: /// [SugarColumn(ColumnName = "pvalue" )] public long Pvalue { get; set; } /// /// 备 注:问题类型;1:学生;2:老师; /// 默认值: /// [SugarColumn(ColumnName = "question_type" )] public int QuestionType { get; set; } /// /// 备 注:问题教师/学生id /// 默认值: /// [SugarColumn(ColumnName = "question_userid" )] public long QuestionUserid { get; set; } /// /// 备 注:年份 /// 默认值: /// [SugarColumn(ColumnName = "question_year" )] public int QuestionYear { get; set; } /// /// 备 注:月份 /// 默认值: /// [SugarColumn(ColumnName = "question_month" )] public int QuestionMonth { get; set; } /// /// 备 注:问题发生时间 /// 默认值: /// [SugarColumn(ColumnName = "addtime" )] public DateTime Addtime { get; set; } /// /// 备 注:用户id /// 默认值: /// [SugarColumn(ColumnName = "adduser_id" )] public long AdduserId { get; set; } /// /// 备 注:学生问题班级id /// 默认值: /// [SugarColumn(ColumnName = "question_class_id" )] public long? QuestionClassId { get; set; } } }