文字游戏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
431 B

using SqlSugar;
namespace Build_God_Api.DB
{
/// <summary>
/// 怪物装备配置(属性 JSON 与 EquipmentInstance.Attributes 同格式)
/// </summary>
public class MonsterEquipment : BaseEntity
{
public int MonsterId { get; set; }
public int EquipmentTemplateId { get; set; }
[SugarColumn(ColumnDataType = "text")]
public string Attributes { get; set; } = "[]";
}
}