118 lines
3.0 KiB
C#
118 lines
3.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Resource")]
|
|
public class game_monster
|
|
{
|
|
/// <summary>
|
|
/// monsterId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string monsterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 怪物应用区域
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? code { get; set; }
|
|
|
|
/// <summary>
|
|
/// lev
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? lev { get; set; }
|
|
|
|
/// <summary>
|
|
/// exp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? exp { get; set; }
|
|
|
|
/// <summary>
|
|
/// copper
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? copper { get; set; }
|
|
|
|
/// <summary>
|
|
/// petExp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? petExp { get; set; }
|
|
|
|
/// <summary>
|
|
/// minAtk
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? minAtk { get; set; }
|
|
|
|
/// <summary>
|
|
/// maxAtk
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? maxAtk { get; set; }
|
|
|
|
/// <summary>
|
|
/// defense
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? defense { get; set; }
|
|
|
|
/// <summary>
|
|
/// agility
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? agility { get; set; }
|
|
|
|
/// <summary>
|
|
/// blood
|
|
/// </summary>
|
|
[SugarColumn(Length = 62, IsNullable = true)]
|
|
public decimal? blood { get; set; }
|
|
|
|
/// <summary>
|
|
/// 怪物属性
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true,IsJson = true)]
|
|
public List<AttrItem> attr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 怪物技能
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? skill { get; set; }
|
|
|
|
/// <summary>
|
|
/// award
|
|
/// </summary>
|
|
[SugarColumn(Length = 3000, IsNullable = true)]
|
|
public string? award { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支持复制战斗0不支持 1支持
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? isCopy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 怪物说明
|
|
/// </summary>
|
|
[SugarColumn(Length = 255, IsNullable = true)]
|
|
public string? remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用于后台操作标记,无其他作用
|
|
/// </summary>
|
|
[SugarColumn(Length = 255, IsNullable = true)]
|
|
public string? markTips { get; set; }
|
|
}
|
|
}
|