using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_dic
{
///
/// code
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
///
/// sign
///
[SugarColumn(IsNullable = true)]
public string? sign { get; set; }
///
/// remark
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? remark { get; set; }
}
}