using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_mall { /// /// mallId /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string mallId { get; set; } /// /// areaId /// [SugarColumn(Length = 50, IsNullable = true)] public string? areaId { get; set; } /// /// name /// [SugarColumn(Length = 50, IsNullable = true)] public string? name { get; set; } /// /// type /// [SugarColumn(Length = 50, IsNullable = true)] public string? type { get; set; } /// /// goodsId /// [SugarColumn(IsNullable = true)] public int? goodsId { 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; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// endTime /// [SugarColumn(IsNullable = true)] public DateTime? endTime { get; set; } } }