2023-07-29 10:19:42 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Host.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TaoBaoNotifyModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Platform { get; set; }
|
|
|
|
|
|
public string PlatformUserId { get; set; }
|
|
|
|
|
|
public string ReceiverName { get; set; }
|
|
|
|
|
|
public string ReceiverMobile { get; set; }
|
|
|
|
|
|
public string ReceiverPhone { get; set; }
|
|
|
|
|
|
public string ReceiverAddress { get; set; }
|
|
|
|
|
|
public string BuyerArea { get; set; }
|
|
|
|
|
|
public string Tid { get; set; }
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
public string SellerNick { get; set; }
|
|
|
|
|
|
public string BuyerNick { get; set; }
|
|
|
|
|
|
public object Type { get; set; }
|
|
|
|
|
|
public string BuyerMessage { get; set; }
|
|
|
|
|
|
public string Price { get; set; }
|
|
|
|
|
|
public int Num { get; set; }
|
|
|
|
|
|
public string TotalFee { get; set; }
|
|
|
|
|
|
public string Payment { get; set; }
|
|
|
|
|
|
public string PayTime { get; set; }
|
|
|
|
|
|
public object PicPath { get; set; }
|
|
|
|
|
|
public object PostFee { get; set; }
|
|
|
|
|
|
public string Created { get; set; }
|
|
|
|
|
|
public object TradeFrom { get; set; }
|
|
|
|
|
|
public List<TaoBaoOrder> Orders { get; set; }
|
|
|
|
|
|
public string SellerMemo { get; set; }
|
|
|
|
|
|
public int SellerFlag { get; set; }
|
|
|
|
|
|
public string CreditCardFee { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class TaoBaoOrder
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Oid { get; set; }
|
|
|
|
|
|
public long NumIid { get; set; }
|
|
|
|
|
|
public string OuterIid { get; set; }
|
|
|
|
|
|
public string OuterSkuId { get; set; }
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
public string Price { get; set; }
|
|
|
|
|
|
public int Num { get; set; }
|
|
|
|
|
|
public string TotalFee { get; set; }
|
|
|
|
|
|
public string Payment { get; set; }
|
|
|
|
|
|
public string PicPath { get; set; }
|
|
|
|
|
|
public string SkuId { get; set; }
|
|
|
|
|
|
public string SkuPropertiesName { get; set; }
|
|
|
|
|
|
public string DivideOrderFee { get; set; }
|
|
|
|
|
|
public string PartMjzDiscount { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|