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