using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 用户日志报表Dto /// public class UserLoginLogReportDto { /// /// 总用户人数 /// public int TotalUsers { get; set; } /// /// 昨日访客数量 /// public int YesterdayUV { get; set; } /// /// 最近7天访客数量 /// public int Last7DaysUV { get; set; } /// /// 最近30天访客数量 /// public int Last30DaysUV { get; set; } /// /// 日志项列表 /// public List LoginLogList { get; set; } /// /// 日志汇总列表 /// public List LogSummaryList { get; set; } /// /// 登录统计 /// public List LoginStatisticsList { get; set; } } }