using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_message_event { /// /// eventId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string eventId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// code /// [SugarColumn(Length = 50, IsNullable = true)] public string? code { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// sign /// [SugarColumn(Length = 255, IsNullable = true)] public string? sign { get; set; } [SugarColumn(IsNullable = true)] public string? pars { get; set; } /// /// state /// [SugarColumn(IsNullable = true)] public int? state { get; set; } /// /// btns /// [SugarColumn(IsNullable = true, IsJson = true)] public List btns { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public long? endTime { get; set; } /// /// token /// [SugarColumn(Length = 255, IsNullable = true)] public string? token { get; set; } } }