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.
24 lines
597 B
24 lines
597 B
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; }
|
|
}
|
|
}
|
|
|