using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_weight_log { /// /// logId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string logId { get; set; } /// /// userId /// [SugarColumn(Length = 50, IsNullable = true)] public string? userId { get; set; } /// /// goodsId /// [SugarColumn(IsNullable = true)] public int? goodsId { get; set; } /// /// goodsName /// [SugarColumn(Length = 50, IsNullable = true)] public string? goodsName { get; set; } /// /// weight /// [SugarColumn(IsNullable = true)] public int? weight { get; set; } /// /// count /// [SugarColumn(IsNullable = true)] public int? count { get; set; } /// /// sum /// [SugarColumn(IsNullable = true)] public int? sum { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } } }