using System; using System.Collections.Generic; using System.Text; namespace Quiz.Models { public class UserAnswer { public int ID { get; set; } public string SchoolName { get; set; } public string ClassName { get; set; } public string StudentName { get; set; } public string ParentName { get; set; } public string PhoneName { get; set; } public int UserId { get; set; } public string Keys { get; set; } public int State { get; set; } public DateTime Intime { get; set; } public int UserType { get; set; } public string schoolType { get; set; } } public enum UserTypeEnum { 学生家长=0, 社会人士=1 } public class DataKanbans { public List TotalSchoolCount { get; set; } public List SchoolTypesList { get; set; } /// /// 今日回收率 /// public List SchoolDayCount { get; set; } /// /// 累计回收率 /// public List SchoolCount { get; set; } /// /// 邀请总人数 /// public decimal TotalCount { get; set; } /// /// 今日调查人数 /// public decimal dayRCount { get; set; } /// /// 今日回收率 /// public decimal dayRecovery { get; set; } /// /// 累计调查人数 /// public decimal TotalRCount { get; set; } /// /// 总回收率 /// public decimal TotalRecovery { get; set; } } public class schoolTypeM { public string schoolType { get; set; } public int schoolCount { get; set; } } public class schoolRecovery { public string schoolName{get;set;} public int schoolcount { get; set; } public int RecoveryCount { get;set; } public decimal Recovery { get; set; } public string schoolType { get; set; } public string Intime { get; set; } } }