56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
|
|
using SqlSugar;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 宠物皮肤定义表
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarTable("PetSkin")]
|
|||
|
|
public partial class PetSkin : SqlSugarBaseEntity
|
|||
|
|
{
|
|||
|
|
public PetSkin() { }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:皮肤名称
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:皮肤图片
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string ImageUrl { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:描述/特效说明
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:True
|
|||
|
|
/// </summary>
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:关联商品Id(用于兑换)
|
|||
|
|
/// Default:
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public long ProductId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:稀有度: Normal, Rare, Epic, Legendary
|
|||
|
|
/// Default:Normal
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public string Rarity { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Desc:排序权重
|
|||
|
|
/// Default:0
|
|||
|
|
/// Nullable:False
|
|||
|
|
/// </summary>
|
|||
|
|
public int SortOrder { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|