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; }
|
}
|
}
|