45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Resource")]
|
|
public class game_equ_suit
|
|
{
|
|
/// <summary>
|
|
/// 套装编码
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string suitCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 套装名称
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? suitName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 套装介绍
|
|
/// </summary>
|
|
[SugarColumn(Length = 500, IsNullable = true)]
|
|
public string? sign { get; set; }
|
|
|
|
/// <summary>
|
|
/// 属性
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true,IsJson = true)]
|
|
public List<EquSuitAttr>? attr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 套装组成装备
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true,IsJson = true)]
|
|
public List<EquSuitList> onEqu { get; set; }
|
|
|
|
/// <summary>
|
|
/// 套装特权
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? role { get; set; }
|
|
}
|
|
} |