using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_city_npc_store { /// /// storeId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string storeId { get; set; } /// /// npcId /// [SugarColumn(IsNullable = true)] public int? npcId { get; set; } /// /// areaId /// [SugarColumn(Length = 50, IsNullable = true)] public string? areaId { get; set; } /// /// type /// [SugarColumn(Length = 50, IsNullable = true)] public string? type { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// parameter /// [SugarColumn(Length = 11, IsNullable = true)] public string? parameter { get; set; } /// /// price /// [SugarColumn(IsNullable = true)] public long? price { get; set; } /// /// payType /// [SugarColumn(Length = 50, IsNullable = true)] public string? payType { get; set; } /// /// sort /// [SugarColumn(IsNullable = true)] public int? sort { get; set; } } }