39 lines
941 B
C#
39 lines
941 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(IsNullable = true, IsJson = true)]
|
|
public List<AttrItem> attr { get; set; }
|
|
|
|
/// <summary>
|
|
/// remark
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string remark { get; set; }
|
|
}
|
|
} |