using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Log")] public class game_charm_log { /// /// logId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string logId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// fromId /// [SugarColumn(Length = 50, IsNullable = true)] public string? fromId { get; set; } /// /// goodsId /// [SugarColumn(IsNullable = true)] public Int32? goodsId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// img /// [SugarColumn(Length = 50, IsNullable = true)] public string? img { get; set; } /// /// count /// [SugarColumn(IsNullable = true)] public int? count { get; set; } /// /// charm /// [SugarColumn(IsNullable = true)] public int? charm { get; set; } /// /// sumCharm /// [SugarColumn(IsNullable = true)] public int? sumCharm { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } } }