using System; using System.Collections.Generic; using System.Text; namespace BBWY.Server.Model.Dto.Request.JD { public class GetAttrsByCategoryIdRequest : PlatformRequest { /// ///spu 类目id /// public long CatId { get; set; } /// /// 属性类型 1.关键属性 3.可变属性 4.销售属性 /// public int? AttributeType { get; set; } /// /// 查询对应的字段数据 /// public string Field { get; set; } } }