using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Game")] public class unit_user_goods { /// /// ugId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string ugId { 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; } /// /// lev /// [SugarColumn(IsNullable = true)] public int? lev { get; set; } /// /// code /// [SugarColumn(Length = 50, IsNullable = true)] public string? code { get; set; } /// /// count /// [SugarColumn(Length = 65, IsNullable = true)] public decimal? count { get; set; } /// /// weight /// [SugarColumn(IsNullable = true)] public int? weight { get; set; } /// /// sysPrice /// [SugarColumn(Length = 18, IsNullable = true)] public decimal? sysPrice { get; set; } /// /// 0不可交易1可交易 /// [SugarColumn(IsNullable = true)] public int? isDeal { get; set; } /// /// 0不可赠送 1可赠送 /// [SugarColumn(IsNullable = true)] public int? isGive { get; set; } } }