101 lines
2.7 KiB
C#
101 lines
2.7 KiB
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace QYZH.InteractiveMagazine.Models.Entity
|
||
|
|
{
|
||
|
|
///<summary>
|
||
|
|
///宠物进化链定义表
|
||
|
|
///</summary>
|
||
|
|
[SugarTable("PetEvolution")]
|
||
|
|
public partial class PetEvolution : BaseEntity
|
||
|
|
{
|
||
|
|
public PetEvolution(){
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:主键
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
|
||
|
|
public new int Id {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:阶段名称
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string StageName {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:阶段等级
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int StageLevel {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:进化所需成长值
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int RequiredGrowth {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:形态图片
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public string ImageUrl {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:前一形态Id
|
||
|
|
/// Default:
|
||
|
|
/// Nullable:True
|
||
|
|
/// </summary>
|
||
|
|
public int? PreviousEvolutionId {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:基础力量
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int BaseStrength {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:基础敏捷
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int BaseAgility {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:基础智力
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int BaseIntelligence {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:基础魅力
|
||
|
|
/// Default:0
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public int BaseCharm {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:进化类型: Normal, Special
|
||
|
|
/// Default:Normal
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Type {get;set;}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Desc:状态: Active, Inactive
|
||
|
|
/// Default:Active
|
||
|
|
/// Nullable:False
|
||
|
|
/// </summary>
|
||
|
|
public string Status {get;set;}
|
||
|
|
}
|
||
|
|
}
|