33 lines
748 B
C#
33 lines
748 B
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Resource")]
|
|
public class game_escort
|
|
{
|
|
/// <summary>
|
|
/// esId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public int esId { get; set; }
|
|
|
|
/// <summary>
|
|
/// random
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? random { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 255, IsNullable = true)]
|
|
public string? name { get; set; }
|
|
|
|
/// <summary>
|
|
/// award
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? award { get; set; }
|
|
}
|
|
} |