mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-21 17:06:37 +08:00
14 lines
326 B
C#
14 lines
326 B
C#
using SqlSugar;
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
|
|
|
namespace Yi.Framework.DigitalCollectibles.Domain.Entities;
|
|
|
|
/// <summary>
|
|
/// 交易市场货物
|
|
/// 用于表示交易市场货物的情况
|
|
/// </summary>
|
|
[SugarTable("DC_MarketGoods")]
|
|
public class MarketGoodsAggregateRoot:FullAuditedAggregateRoot<Guid>
|
|
{
|
|
|
|
} |