using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Solution { public class SumQuestionInfoByTypeResult { public List questionInfoByTypeResult { get; set; } /// /// 总条数 /// public int SumQuestionCount { get; set; } } public class QuestionInfoByTypeResult { /// /// 任务类型枚举 /// public int TaskEnum { get; set; } /// /// 问题类型枚举 /// public int QuestionType { get; set; } /// /// 问题具体信息 /// public long QuestionPValue { get; set; } /// /// 父级问题类型 /// public string FatherQuestionName { get; set; } /// /// 问题类型 /// public string QuestionName { get; set; } /// /// 首页本月条数/类型总条数 /// public int QuestionCount { get; set; } } public class QuestionInfoByTaskEnumResult { /// /// 父级问题类型 /// public string FatherQuestionName { get; set; } /// /// 问题类型 /// public string QuestionName { get; set; } /// /// 条数 /// public int QuestionCount { get; set; } /// /// 环比 /// public string QuestionChain { get; set; } /// /// 问题列表 /// public List questionInfoResults { get; set; } } /// /// 问题列表 /// public class QuestionInfoResult { /// /// 问题人id /// public long QuestionUserId { get; set; } /// /// 问题人 /// public string QuestionUserName { get; set; } /// /// 问题时间 /// public DateTime AddTime { get; set; } /// /// 任务类型枚举 /// public int TaskEnum { get; set; } /// /// 任务id /// public long TaskId { get; set; } /// /// 问题具体value /// public long QuestionPValue { get; set; } /// /// 父级问题类型 /// public string FatherQuestionName { get; set; } /// /// 问题类型 /// public string QuestionName { get; set; } /// /// 问题类型 1:学生;2:老师; /// public int QuestionType { get; set; } /// /// 学生问题时所属班级id /// public long? QuestionClassId { get; set; } } }