using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_mail { /// /// mailId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string mailId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// sign /// [SugarColumn(IsNullable = true)] public string? sign { get; set; } /// /// isRead /// [SugarColumn(IsNullable = true)] public int? isRead { get; set; } /// /// isGet /// [SugarColumn(IsNullable = true)] public int? isGet { get; set; } /// /// award /// [SugarColumn(IsNullable = true,IsJson = true)] public List award { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public long? endTime { get; set; } } }