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