Commit 51e1fe6e authored by gdlcf88's avatar gdlcf88

Add details to BasketItem

parent 9f524666
using System; using System;
using JetBrains.Annotations;
using Volo.Abp.Domain.Entities.Auditing; using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy; using Volo.Abp.MultiTenancy;
...@@ -15,5 +16,20 @@ namespace EasyAbp.EShop.Baskets.BasketItems ...@@ -15,5 +16,20 @@ namespace EasyAbp.EShop.Baskets.BasketItems
public virtual Guid ProductSkuId { get; protected set; } public virtual Guid ProductSkuId { get; protected set; }
public virtual int Quantity { get; protected set; } public virtual int Quantity { get; protected set; }
[CanBeNull]
public virtual string MediaResources { get; protected set; }
[NotNull]
public virtual string ProductName { get; protected set; }
[NotNull]
public virtual string SkuDescription { get; protected set; }
public virtual decimal UnitPrice { get; protected set; }
public virtual decimal TotalPrice { get; protected set; }
public virtual decimal TotalDiscount { get; protected set; }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment