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