19 lines
547 B
19 lines
547 B
3 years ago
|
using System;
|
||
|
|
||
|
namespace BBWY.Client.Models
|
||
|
{
|
||
|
public partial class PurchaseSchemeProductSkuResponse
|
||
|
{
|
||
|
public long Id { get; set; }
|
||
|
public DateTime? CreateTime { get; set; }
|
||
|
public string ProductId { get; set; }
|
||
|
public string PurchaseProductId { get; set; }
|
||
|
public string PurchaseSkuId { get; set; }
|
||
|
public string PurchaseSkuSpecId { get; set; }
|
||
|
public string SkuId { get; set; }
|
||
|
public long SkuPurchaseSchemeId { get; set; }
|
||
|
public long UserId { get; set; }
|
||
|
}
|
||
|
|
||
|
}
|