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.
54 lines
1.1 KiB
54 lines
1.1 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace BBWY.Server.Model.Dto
|
||
|
{
|
||
|
public class ProductResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 商品Id
|
||
|
/// </summary>
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 商品货号
|
||
|
/// </summary>
|
||
|
public string ProductItemNum { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 商品标题
|
||
|
/// </summary>
|
||
|
public string Title { get; set; }
|
||
|
}
|
||
|
|
||
|
public class ProductListResponse
|
||
|
{
|
||
|
public int Count { get; set; }
|
||
|
|
||
|
public IList<ProductResponse> Items { get; set;}
|
||
|
}
|
||
|
|
||
|
public class ProductSkuResponse
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
public decimal Price { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Sku标题
|
||
|
/// </summary>
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
public string Logo { get; set; }
|
||
|
}
|
||
|
|
||
|
public class SimpleProductSkuResponse
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public string Logo { get; set; }
|
||
|
}
|
||
|
}
|