5 changed files with 78 additions and 19 deletions
@ -0,0 +1,25 @@ |
|||
|
|||
|
|||
using BBWYB.Server.Model; |
|||
using BBWYB.Server.Model.Db; |
|||
|
|||
namespace BBWYB.Server.Business |
|||
{ |
|||
public static class OrderStateExtension |
|||
{ |
|||
/// <summary>
|
|||
/// 计算订单状态
|
|||
/// </summary>
|
|||
/// <param name="order"></param>
|
|||
/// <param name="orderSkuList"></param>
|
|||
/// <param name="orderPurchaseInfoList"></param>
|
|||
/// <returns></returns>
|
|||
public static Enums.OrderState CalculationOrderState(this Order order, |
|||
IList<OrderSku> orderSkuList, |
|||
IList<OrderPurchaseInfo> orderPurchaseInfoList) |
|||
{ |
|||
|
|||
return Enums.OrderState.Unknow; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue