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.
46 lines
1.1 KiB
46 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BBWY.Client.Models
|
|
{
|
|
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 StorageType? StorageType { get; set; }
|
|
|
|
public decimal? PurchaseSkuAmount { get; set; }
|
|
|
|
public decimal? PurchaseFreight { get; set; }
|
|
|
|
public decimal? PurchaseAmount { get { return PurchaseSkuAmount + PurchaseFreight; } }
|
|
|
|
public decimal? SkuPrice { get; set; }
|
|
|
|
public int? ItemTotal { get; set; }
|
|
|
|
public string SpuName { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{StartTime},{ShopName},{OrderId},{Spu},{Sku},{StorageType},{PurchaseAmount},{SkuPrice},{ItemTotal},{SpuName}";
|
|
}
|
|
}
|
|
|
|
public class ExportOrderSkuListResponse
|
|
{
|
|
public long Count { get; set; }
|
|
|
|
public IList<ExportOrderSkuResponse> ItemList { get; set; }
|
|
}
|
|
}
|
|
|