namespace WeEngine.Statistic { public class StatisticCampDto { /// /// 课程总数 /// public int CampCount { get; set; } /// /// 历史演练总数 /// public int PlayCount { get; set; } /// /// 历史演练人次 /// public int PlayerTotalCount { get; set; } /// /// 今日演练总数 /// public int TodayPlayCount { get; set; } /// /// 今日演练人次 /// public int TodayPlayerTotalCount { get; set; } } }