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