namespace Application.Domain.Entity; public class EquGem { private System.String _Id; /// /// /// public System.String Id { get { return this._Id; } set { this._Id = value; } } private System.Int32 _goodsId; /// /// /// public System.Int32 goodsId { get { return this._goodsId; } set { this._goodsId = value; } } private System.String _goodsName; /// /// /// public System.String goodsName { get { return this._goodsName; } set { this._goodsName = value; } } private System.Int32? _isDeal; /// /// /// public System.Int32? isDeal { get { return this._isDeal; } set { this._isDeal = value; } } public EquGemItem gemItem { get; set; } } public class EquGemItem { private System.String _place; /// /// /// public System.String place { get { return this._place; } set { this._place = value; } } public List GemAttr { get; set; } }