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.

23 lines
501 B

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; }
}
}