You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
983 B
C#
36 lines
983 B
C#
namespace Admin.NET.Plugin.HwPortal;
|
|
|
|
[SugarTable("hw_web_visit_daily")]
|
|
public class HwWebVisitDaily
|
|
{
|
|
[SugarColumn(ColumnName = "stat_date", IsPrimaryKey = true)]
|
|
public DateTime? StatDate { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "pv")]
|
|
public long? Pv { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "uv")]
|
|
public long? Uv { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "ip_uv")]
|
|
public long? IpUv { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "avg_stay_ms")]
|
|
public long? AvgStayMs { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "bounce_rate")]
|
|
public double? BounceRate { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "search_count")]
|
|
public long? SearchCount { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "download_count")]
|
|
public long? DownloadCount { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "created_at")]
|
|
public DateTime? CreatedAt { get; set; }
|
|
|
|
[SugarColumn(ColumnName = "updated_at")]
|
|
public DateTime? UpdatedAt { get; set; }
|
|
}
|