1111
This commit is contained in:
50
Service/Application.Domain.Entity/model/EquGem.cs
Normal file
50
Service/Application.Domain.Entity/model/EquGem.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
namespace Application.Domain.Entity;
|
||||
|
||||
public class EquGem
|
||||
{
|
||||
private System.String _Id;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String Id
|
||||
{ get { return this._Id; } set { this._Id = value; } }
|
||||
|
||||
private System.Int32 _goodsId;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32 goodsId
|
||||
{ get { return this._goodsId; } set { this._goodsId = value; } }
|
||||
|
||||
private System.String _goodsName;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String goodsName
|
||||
{ get { return this._goodsName; } set { this._goodsName = value; } }
|
||||
|
||||
private System.Int32? _isDeal;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.Int32? isDeal
|
||||
{ get { return this._isDeal; } set { this._isDeal = value; } }
|
||||
|
||||
public EquGemItem gemItem { get; set; }
|
||||
}
|
||||
public class EquGemItem
|
||||
{
|
||||
private System.String _place;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public System.String place
|
||||
{ get { return this._place; } set { this._place = value; } }
|
||||
|
||||
public List<AttrItem> GemAttr { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user