1111
This commit is contained in:
37
Service/Application.Domain.Entity/model/EquAwaken.cs
Normal file
37
Service/Application.Domain.Entity/model/EquAwaken.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquAwaken
|
||||
{
|
||||
private System.String _atId;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String atId
|
||||
{ get { return this._atId; } set { this._atId = value; } }
|
||||
|
||||
private System.Int32 _lev;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 lev
|
||||
{ get { return this._lev; } set { this._lev = value; } }
|
||||
|
||||
private System.String _name;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String name
|
||||
{ get { return this._name; } set { this._name = value; } }
|
||||
|
||||
private List<AttrItem> _awaken;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SqlSugar.SugarColumn(ColumnDataType = "varchar(max)", IsJson = true)]
|
||||
public List<AttrItem> awaken
|
||||
{ get { return this._awaken; } set { this._awaken = value; } }
|
||||
}
|
||||
Reference in New Issue
Block a user