12121
This commit is contained in:
30
Service/Application.Domain.Entity/model/CheckTowerNeeds.cs
Normal file
30
Service/Application.Domain.Entity/model/CheckTowerNeeds.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class CheckTowerNeeds
|
||||
{
|
||||
private bool _result;
|
||||
|
||||
public bool result
|
||||
{ get { return this._result; } set { this._result = value; } }
|
||||
|
||||
private System.Int32 _isDeal;
|
||||
|
||||
/// <summary>
|
||||
/// 0不可交易1可交易
|
||||
/// </summary>
|
||||
public System.Int32 isDeal
|
||||
{ get { return this._isDeal; } set { this._isDeal = value; } }
|
||||
|
||||
private System.Int32 _isGive;
|
||||
|
||||
/// <summary>
|
||||
/// 0不可交易1可交易
|
||||
/// </summary>
|
||||
public System.Int32 isGive
|
||||
{ get { return this._isGive; } set { this._isGive = value; } }
|
||||
|
||||
private List<TowerNeeds> _Needs;
|
||||
|
||||
public List<TowerNeeds> Needs
|
||||
{ get { return this._Needs; } set { this._Needs = value; } }
|
||||
}
|
||||
@@ -31,7 +31,6 @@ public class EquAwaken
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[SqlSugar.SugarColumn(ColumnDataType = "varchar(max)", IsJson = true)]
|
||||
public List<AttrItem> awaken
|
||||
{ get { return this._awaken; } set { this._awaken = value; } }
|
||||
}
|
||||
36
Service/Application.Domain.Entity/model/EquAwakenData.cs
Normal file
36
Service/Application.Domain.Entity/model/EquAwakenData.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquAwakenData
|
||||
{
|
||||
private System.Int32 _lev;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 lev
|
||||
{ get { return this._lev; } set { this._lev = value; } }
|
||||
|
||||
private System.Int32 _success;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 success
|
||||
{ get { return this._success; } set { this._success = value; } }
|
||||
|
||||
private List<TowerNeed> _need;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<TowerNeed> need
|
||||
{ get { return this._need; } set { this._need = value; } }
|
||||
|
||||
private List<AttrItem> _attr;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<AttrItem> attr
|
||||
{ get { return this._attr; } set { this._attr = value; } }
|
||||
}
|
||||
@@ -26,20 +26,20 @@ public class TowerNeed
|
||||
public System.String parameter
|
||||
{ get { return this._parameter; } set { this._parameter = value; } }
|
||||
|
||||
private System.Int32 _count;
|
||||
private long _count;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 count
|
||||
public long count
|
||||
{ get { return this._count; } set { this._count = value; } }
|
||||
|
||||
private System.Int32 _retCount;
|
||||
private long _retCount;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 retCount
|
||||
public long retCount
|
||||
{ get { return this._retCount; } set { this._retCount = value; } }
|
||||
|
||||
private System.Int32 _isOp;
|
||||
@@ -57,4 +57,12 @@ public class TowerNeed
|
||||
/// </summary>
|
||||
public System.Int32 isAsk
|
||||
{ get { return this._isAsk; } set { this._isAsk = value; } }
|
||||
|
||||
private long _onCount;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public long onCount
|
||||
{ get { return this._onCount; } set { this._onCount = value; } }
|
||||
}
|
||||
111
Service/Application.Domain.Entity/model/TowerNeeds.cs
Normal file
111
Service/Application.Domain.Entity/model/TowerNeeds.cs
Normal file
@@ -0,0 +1,111 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class TowerNeeds
|
||||
{
|
||||
private System.Int32 _Id;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 Id
|
||||
{
|
||||
get { return this._Id; }
|
||||
set { this._Id = value; }
|
||||
}
|
||||
|
||||
private System.String _code;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String code
|
||||
{
|
||||
get { return this._code; }
|
||||
set { this._code = value; }
|
||||
}
|
||||
|
||||
private System.String _name;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String name
|
||||
{
|
||||
get { return this._name; }
|
||||
set { this._name = value; }
|
||||
}
|
||||
|
||||
private System.String _parameter;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String parameter
|
||||
{
|
||||
get { return this._parameter; }
|
||||
set { this._parameter = value; }
|
||||
}
|
||||
|
||||
private long _count;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public long count
|
||||
{
|
||||
get { return this._count; }
|
||||
set { this._count = value; }
|
||||
}
|
||||
|
||||
private long _retCount;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public long retCount
|
||||
{
|
||||
get { return this._retCount; }
|
||||
set { this._retCount = value; }
|
||||
}
|
||||
|
||||
private System.Int32 _isOp;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 isOp
|
||||
{
|
||||
get { return this._isOp; }
|
||||
set { this._isOp = value; }
|
||||
}
|
||||
|
||||
private System.Int32 _isAsk;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 isAsk
|
||||
{
|
||||
get { return this._isAsk; }
|
||||
set { this._isAsk = value; }
|
||||
}
|
||||
|
||||
private long _onCount;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public long onCount
|
||||
{
|
||||
get { return this._onCount; }
|
||||
set { this._onCount = value; }
|
||||
}
|
||||
|
||||
private List<TowerNeed> _NeedItem;
|
||||
|
||||
public List<TowerNeed> NeedItem
|
||||
{
|
||||
get { return this._NeedItem; }
|
||||
set { this._NeedItem = value; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user