using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_cdk_item
{
///
/// ciId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string ciId { get; set; }
///
/// cdkId
///
[SugarColumn(IsNullable = true)]
public int? cdkId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// upTime
///
[SugarColumn(IsNullable = true)]
public DateTime? upTime { get; set; }
}
}