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_make
|
|
{
|
|
/// <summary>
|
|
/// mkId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string mkId { get; set; }
|
|
|
|
/// <summary>
|
|
/// goodsId
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? goodsId { get; set; }
|
|
|
|
/// <summary>
|
|
/// equId
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? equId { get; set; }
|
|
|
|
/// <summary>
|
|
/// equName
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? equName { get; set; }
|
|
|
|
/// <summary>
|
|
/// random
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? random { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否随机特性
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? rdAttr { get; set; }
|
|
}
|
|
} |