步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB

using System;
using System.Collections.Generic;
namespace BBWY.Server.Model.Dto
{
public class ExportOrderSkuResponse
{
public string OrderId { get; set; }
public DateTime? StartTime { get; set; }
public long ShopId { get; set; }
public string ShopName { get; set; }
public string Spu { get; set; }
public string Sku { get; set; }
public Enums.StorageType? StorageType { get; set; }
public decimal? PurchaseSkuAmount { get; set; }
public decimal? PurchaseFreight { get; set; }
public decimal? SkuPrice { get; set; }
public int? ItemTotal { get; set; }
public string SpuName { get; set; }
public Enums.OrderState? OrderState { get; set; }
/// <summary>
/// 平台补贴
/// </summary>
public decimal? PreferentialAmount { get; set; }
/// <summary>
/// 商家优惠金额
/// </summary>
public decimal? SellerPreferentialAmount { get; set; }
}
public class ExportOrderSkuListResponse
{
public long Count { get; set; }
public IList<ExportOrderSkuResponse> ItemList { get; set; }
}
}