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.
20 lines
621 B
20 lines
621 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 List<PurchaseSchemeProductSkuResponse> PurchaseSchemeProductSkuList { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|