ningshuxia
2022-12-09 950a104d4690606f3b9744cc4b917b45fef34fb3
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
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<UserLoginLogItem> LoginLogList { get; set; }
 
    }
}