using SqlSugar;
using Volo.Abp.Domain.Entities.Auditing;
namespace Yi.Framework.DigitalCollectibles.Domain.Entities;
///
/// 交易市场货物
/// 用于表示交易市场货物的情况
///
[SugarTable("DC_MarketGoods")]
public class MarketGoodsAggregateRoot:FullAuditedAggregateRoot
{
///
/// 出售者用户id
///
public Guid SellUserId { get; set; }
///
/// 藏品id
///
public Guid CollectiblesId { get; set; }
///
/// 出售数量
///
public int SellNumber{ get; set; }
///
/// 出售单价
///
public decimal UnitPrice{ get; set; }
}