using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_skill
{
///
/// usId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string usId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// skill
///
[SugarColumn(IsNullable = 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; }
}
}