using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_cdk
{
///
/// cdkId
///
[SugarColumn(IsPrimaryKey = true)]
public int cdkId { get; set; }
///
/// area
///
[SugarColumn(IsNullable = true)]
public int? area { get; set; }
///
/// cdkName
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? cdkName { get; set; }
///
/// award
///
[SugarColumn(IsNullable = true,IsJson = true)]
public List award { get; set; }
///
/// limit
///
[SugarColumn(IsNullable = true)]
public int? limit { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public DateTime? endTime { get; set; }
}
}