using SqlSugar; using System; namespace Application.Domain.Entity { [Tenant("Kg.SeaTime.Resource")] public class game_ack { /// /// ackCode /// [SugarColumn(IsPrimaryKey = true, Length = 50)] public string ackCode { get; set; } /// /// areaId /// [SugarColumn(IsNullable = true)] public int? areaId { get; set; } /// /// status /// [SugarColumn(IsNullable = true)] public int? status { get; set; } /// /// addTime /// [SugarColumn(IsNullable = true)] public DateTime? addTime { get; set; } /// /// useTime /// [SugarColumn(IsNullable = true)] public DateTime? useTime { get; set; } /// /// useUser /// [SugarColumn(Length = 50, IsNullable = true)] public string? useUser { get; set; } } }