1212
This commit is contained in:
30
Service/Application.Domain.Entity/model/CheckTowerNeed.cs
Normal file
30
Service/Application.Domain.Entity/model/CheckTowerNeed.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class CheckTowerNeed
|
||||
{
|
||||
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<TowerNeed> _Needs;
|
||||
|
||||
public List<TowerNeed> Needs
|
||||
{ get { return this._Needs; } set { this._Needs = value; } }
|
||||
}
|
||||
Reference in New Issue
Block a user