4 changed files with 57 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace BBWY.Server.Model.Dto.Request.JD |
|||
{ |
|||
public class GetAttrsByCategoryIdRequest : PlatformRequest |
|||
{ |
|||
/// <summary>
|
|||
///spu 类目id
|
|||
/// </summary>
|
|||
public long CatId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 属性类型 1.关键属性 3.可变属性 4.销售属性
|
|||
/// </summary>
|
|||
public int? AttributeType { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 查询对应的字段数据
|
|||
/// </summary>
|
|||
public string Field { get; set; } |
|||
} |
|||
} |
Loading…
Reference in new issue