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.
19 lines
426 B
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; }
|
|
}
|
|
}
|
|
|