1212
This commit is contained in:
@@ -89,11 +89,7 @@ namespace Application.Domain.Entity
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string? award { get; set; }
|
||||
/// <summary>
|
||||
/// 伤害
|
||||
/// </summary>
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public long? harm { get; set; }
|
||||
|
||||
[SugarColumn(IsNullable = true)]
|
||||
public string? pars { get; set; }
|
||||
/// <summary>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class FightAwardModel
|
||||
{
|
||||
public string code { get; set; }
|
||||
public object award { get; set; }
|
||||
}
|
||||
@@ -8,4 +8,6 @@ public class MapMonsterModel
|
||||
/// 0地图怪物 1生成怪物
|
||||
/// </summary>
|
||||
public int type { get; set; }
|
||||
|
||||
public string sign { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class MonsterAwardModel
|
||||
{
|
||||
public string type { get; set; }
|
||||
public RandomModel award { get; set; }
|
||||
}
|
||||
@@ -8,11 +8,14 @@
|
||||
public int isCopy { get; set; }
|
||||
public string viceId { get; set; }
|
||||
public string name { get; set; }
|
||||
public int figState { get; set; }
|
||||
public string sex { get; set; }
|
||||
public string code { get; set; }
|
||||
public string remark { get; set; }
|
||||
public string TmImg { get; set; }
|
||||
public string tips { get; set; }
|
||||
public decimal addExp { get; set; }
|
||||
public decimal addGold { get; set; }
|
||||
public decimal burst { get; set; }//爆率
|
||||
public decimal luck { get; set; }//幸运
|
||||
public int weight { get; set; }//负重
|
||||
public int lev { get; set; }//等级
|
||||
public int minAtk { get; set; }//最小攻击
|
||||
public int maxAtk { get; set; }//最大攻击
|
||||
|
||||
Reference in New Issue
Block a user