using SqlSugar; namespace Link.DbModel { /// /// /// [SugarTable("lk_access_statistic")] public class LkAccessStatistic { /// /// /// public LkAccessStatistic() { } /// /// Id /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public System.Int64 Id { get; set; } /// /// 短码 /// [SugarColumn(ColumnName = "key")] public System.String Key { get; set; } /// /// pv /// [SugarColumn(ColumnName = "pv")] public System.Int64 Pv { get; set; } /// /// uv /// [SugarColumn(ColumnName = "uv")] public System.Int64 Uv { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public System.DateTime CreateTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "update_time")] public System.DateTime UpdateTime { get; set; } } }