步步为盈

19 lines
426 B

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; }
}
}