ningshuxia
2022-12-12 0e9f816989a07641b336faa11dfa7341221f9c2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 用户日志报表Dto
    /// </summary>
    public class UserLoginLogReportDto
    {
        /// <summary>
        /// 总用户人数
        /// </summary>
        public int TotalUsers { get; set; }
 
        /// <summary>
        /// 今日访客数量
        /// </summary>
        public int TodayUV { get; set; }
 
        /// <summary>
        /// 最近7天访客数量
        /// </summary>
        public int Last7DaysUV { get; set; }
 
        /// <summary>
        /// 最近30天访客数量
        /// </summary>
        public int Last30DaysUV { get; set; }
         
        /// <summary>
        /// 日志项列表
        /// </summary>
        public List<LoginLogItem> LoginLogList { get; set; }
 
        /// <summary>
        /// 日志汇总列表
        /// </summary>
        public List<LogSummary> LogSummaryList { get; set; }
         
        /// <summary>
        /// 登录统计
        /// </summary>
        public List<LoginStatistics> LoginStatisticsList { get; set; }
 
 
    }
}