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