2026-06-01 17:59:23 +08:00
|
|
|
|
using SqlSugar;
|
2026-06-08 16:57:44 +08:00
|
|
|
|
using QYZH.InteractiveMagazine.Models.Enum;
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
|
|
|
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
|
|
|
|
|
{
|
|
|
|
|
|
///<summary>
|
|
|
|
|
|
///宠物进化链定义表
|
|
|
|
|
|
///</summary>
|
|
|
|
|
|
[SugarTable("PetEvolution")]
|
2026-06-02 14:10:43 +08:00
|
|
|
|
public partial class PetEvolution : SqlSugarBaseEntity
|
2026-06-01 17:59:23 +08:00
|
|
|
|
{
|
2026-06-05 17:15:30 +08:00
|
|
|
|
public PetEvolution() { }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 18:10:34 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:所属宠物模板Id(关联PetTemplate.Id)
|
|
|
|
|
|
/// Default:
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long TemplateId { get; set; }
|
|
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:阶段名称
|
|
|
|
|
|
/// Default:
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string StageName { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:阶段等级
|
|
|
|
|
|
/// Default:
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int StageLevel { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:进化所需成长值
|
|
|
|
|
|
/// Default:
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int RequiredGrowth { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:前一形态Id(null表示初始形态)
|
|
|
|
|
|
/// Default:
|
|
|
|
|
|
/// Nullable:True
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long? PreviousEvolutionId { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:基础力量
|
|
|
|
|
|
/// Default:0
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int BaseStrength { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:基础敏捷
|
|
|
|
|
|
/// Default:0
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int BaseAgility { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:基础智力
|
|
|
|
|
|
/// Default:0
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int BaseIntelligence { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:基础魅力
|
|
|
|
|
|
/// Default:0
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int BaseCharm { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
|
2026-06-05 17:15:30 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Desc:进化类型: Normal, Special
|
|
|
|
|
|
/// Default:Normal
|
|
|
|
|
|
/// Nullable:False
|
|
|
|
|
|
/// </summary>
|
2026-06-08 16:57:44 +08:00
|
|
|
|
public PetEvolutionTypeEnum Type { get; set; }
|
2026-06-01 17:59:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|