zhaojs
2023-09-27 74098f1401afe40f961d1d167bb18dd0a71c4d59
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
52
53
54
55
using SqlSugar;
 
namespace Link.DbModel
{
    /// <summary>
    /// 
    /// </summary>
    [SugarTable("lk_access_statistic")]
    public class LkAccessStatistic
    {
 
        /// <summary>
        /// 
        /// </summary>
        public LkAccessStatistic()
        {
        }
 
        /// <summary>
        /// Id
        /// </summary>
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
        public System.Int64 Id { get; set; }
 
        /// <summary>
        /// 短码
        /// </summary>
        [SugarColumn(ColumnName = "key")]
        public System.String Key { get; set; }
 
        /// <summary>
        /// pv
        /// </summary>
        [SugarColumn(ColumnName = "pv")]
        public System.Int64 Pv { get; set; }
 
        /// <summary>
        /// uv
        /// </summary>
        [SugarColumn(ColumnName = "uv")]
        public System.Int64 Uv { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(ColumnName = "create_time")]
        public System.DateTime CreateTime { get; set; }
 
        /// <summary>
        /// 更新时间
        /// </summary>
        [SugarColumn(ColumnName = "update_time")]
        public System.DateTime UpdateTime { get; set; }
    }
}