using System.Collections.Generic; namespace TEAMModelOS.SDK.Models.Cosmos { public class IotStatisticsBase { public IotStatisticsBase() { tmidList = new List(); htcDevList = new List(); htaDevList = new List(); htccDevList = new List(); } public int classCnt { get; set; } ///教室數 public int teacherCnt { get; set; } ///總教師數 public int studentCnt { get; set; } ///學生數(今年) public int deviceAuthCnt { get; set; } ///HiTeach硬體授權數 public List tmidList { get; set; } ///TMID列表 public int tmidCnt { get; set; } ///TMID數 public int stuShow { get; set; } ///學生人次 public long stuLessonLengMin { get; set; } ///學生參與總時間數(分) public int lessonRecord { get; set; } ///課堂數 public long lessonLengMin { get; set; } ///課堂時間數(分) public int mission { get; set; } ///課中統計-任務數 public int missionFin { get; set; } ///課中統計-作品數 public int item { get; set; } ///課中統計-題目數 public int interact { get; set; } ///課中統計-互動次數 public int lTypeCoop { get; set; } ///學習型態: 合作 public int lTypeIact { get; set; } ///學習型態: 互動 public int lTypeMis { get; set; } ///學習型態: 任務 public int lTypeTst { get; set; } ///學習型態: 測驗 public int lTypeDif { get; set; } ///學習型態: 差異化 public List htcDevList { get; set; } ///設備統計-HiTeach Device list public int htcDevCnt { get; set; } ///設備統計-HiTeach數 public List htaDevList { get; set; } ///設備統計-HiTA Device list public int htaDevCnt { get; set; } ///設備統計-HiTA數 public List htccDevList { get; set; } ///設備統計-HiTeachCC Device list public int htccDevCnt { get; set; } ///設備統計-HiTeachCC數 } public class IotStatisticsSch : IotStatisticsBase { public string schId { get; set; } public string schName { get; set; } public string sdate { get; set; } public string edate { get; set; } public int htcDevTotalCnt { get; set; } ///設備統計-HiTeach總數 (無視統計期間) public int htaDevTotalCnt { get; set; } ///設備統計-HiTA總數 (無視統計期間) } public class IotStatisticsArea : IotStatisticsBase { public string sdate { get; set; } public string edate { get; set; } public int htcDevTotalCnt { get; set; } ///設備統計-HiTeach總數 (無視統計期間) public int htaDevTotalCnt { get; set; } ///設備統計-HiTA總數 (無視統計期間) } }