121212
This commit is contained in:
51
Service/Application.Domain.Entity/resource/game/game_cdk.cs
Normal file
51
Service/Application.Domain.Entity/resource/game/game_cdk.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using SqlSugar;
|
||||
using System;
|
||||
|
||||
namespace Application.Domain.Entity
|
||||
{
|
||||
[Tenant("Kg.SeaTime.Resource")]
|
||||
public class game_cdk
|
||||
{
|
||||
/// <summary>
|
||||
/// cdkId
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public int cdkId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// area
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? area { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// cdkName
|
||||
/// </summary>
|
||||
[SugarColumn(Length = 255, IsNullable = true)]
|
||||
public string? cdkName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// award
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true,IsJson = true)]
|
||||
public List<TowerGet> award { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// limit
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public int? limit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// addTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? addTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// endTime
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public DateTime? endTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user