Files
Kg.SeaTime/Service/Application.Domain.Entity/resource/game/game_maxname.cs
2026-07-13 14:28:33 +08:00

40 lines
934 B
C#

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