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.
32 lines
938 B
32 lines
938 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BBWYB.Client.Models
|
|
{
|
|
public partial class PurchaseSchemeProductResponse
|
|
{
|
|
public long Id { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public string ProductId { get; set; }
|
|
public string PurchaseProductId { get; set; }
|
|
public string PurchaseUrl { get; set; }
|
|
public string SkuId { get; set; }
|
|
public long SkuPurchaseSchemeId { get; set; }
|
|
public long UserId { get; set; }
|
|
|
|
public string PurchaserName { get; set; }
|
|
|
|
public string PurchaserId { get; set; }
|
|
public string PurchaserId2 { get; set; }
|
|
|
|
public string PurchaserLocation { get; set; }
|
|
|
|
public Platform? PurchasePlatform { get; set; }
|
|
|
|
public string PurchaserMemberId { get; set; }
|
|
|
|
public List<PurchaseSchemeProductSkuResponse> PurchaseSchemeProductSkuList { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|