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.

36 lines
814 B

2 years ago
using System;
namespace BBWYB.Client.Models
{
public partial class OrderPurchaseInfoResponse
{
public DateTime? CreateTime { get; set; }
public string PurchaseAccountId { get; set; }
public string PurchaseAccountName { get; set; }
public PurchaseMethod? PurchaseMethod { get; set; }
public string PurchaseOrderId { get; set; }
public Platform? PurchasePlatform { get; set; }
public string PurchaserName { get; set; }
2 years ago
public string WaybillNo { get; set; }
public string SourceExpressName { get; set; }
public string SourceExpressId { get; set; }
public string TargetExpressName { get; set; }
public string TargetExpressId { get; set; }
public string BelongSkuIds { get; set; }
2 years ago
}
}