Browse Source

Adjusted properties in Order aggregate root

pull/49/head
gdlcf88 6 years ago
parent
commit
abc2094e7c
  1. 10
      modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Orders/Order.cs

10
modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Orders/Order.cs

@ -19,10 +19,6 @@ namespace EasyAbp.EShop.Orders.Orders
public virtual bool NeedShipping { get; protected set; }
public virtual Guid? ShippingAddressId { get; protected set; }
public virtual Guid? ShippingMethodId { get; protected set; }
[NotNull]
public virtual string Currency { get; protected set; }
@ -42,6 +38,12 @@ namespace EasyAbp.EShop.Orders.Orders
[CanBeNull]
public virtual string StaffRemark { get; protected set; }
public virtual DateTime? PaidTime { get; protected set; }
public virtual DateTime? CompletionTime { get; protected set; }
public virtual DateTime? CancelledTime { get; protected set; }
public virtual List<OrderLine> OrderLines { get; protected set; }
}
}
Loading…
Cancel
Save