using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Server.Model.Dto.Request.JD
{
public class GetProductByIdRequest : PlatformRequest
{
///
/// 商品spuId
///
public long? SpuId { get; set; }
///
/// 查询对应的字段数据
///
public string Field { get; set; }
}
}