using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_online_time { /// /// userId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string userId { get; set; } /// /// dayTime /// [SugarColumn(IsNullable = true)] public long? dayTime { get; set; } /// /// monthTime /// [SugarColumn(IsNullable = true)] public long? monthTime { get; set; } /// /// totalTime /// [SugarColumn(IsNullable = true)] public long? totalTime { get; set; } } }