using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_maxname
{
///
/// mnId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string mnId { get; set; }
///
/// name
///
[SugarColumn(Length = 50, IsNullable = true)]
public string name { get; set; }
///
/// img
///
[SugarColumn(Length = 50, IsNullable = true)]
public string img { get; set; }
///
/// attr
///
[SugarColumn(Length = 1000, IsNullable = true)]
public string attr { get; set; }
///
/// remark
///
[SugarColumn(IsNullable = true)]
public string remark { get; set; }
}
}