4 changed files with 51 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace BBWY.Server.Model.Dto.Request.JD |
||||
|
{ |
||||
|
public class GetProductByIdRequest : PlatformRequest |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 商品spuId
|
||||
|
/// </summary>
|
||||
|
public long? SpuId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 查询对应的字段数据
|
||||
|
/// </summary>
|
||||
|
public string Field { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue