using SqlSugar; using System; namespace Tiobon.Core.Model.Models { /// /// 用户访问趋势日志 /// public class AccessTrendLog : RootEntityTkey { /// /// 用户 /// [SugarColumn(Length = 128, IsNullable = true)] public string UserInfo { get; set; } /// /// 次数 /// public int Count { get; set; } /// /// 更新时间 /// public DateTime UpdateTime { get; set; } = DateTime.Now; } }