using System;
using System.Collections.Generic;
using System.Text;
namespace AlibabaSDK.Domain
{
public class AlibabaCategoryGetDomain
{
///
/// 类目ID
///
public long categoryID { get; set; }
///
/// 类目名称
///
public string name { get; set; }
public bool isLeaf { get; set; }
///
/// 父类目ID数组,1688只返回一个父id
///
public List parentIDs { get; set; }
public List childIDs { get; set; }
///
/// 最小起订量
///
public long minOrderQuantity { get; set; }
///
/// 类目的类型,1为1688大市场类目,2为1688工业品专业化类目,3为1688主流商品类目
///
public string categoryType { get; set; }
///
/// 类目是否支持加工定制
///
public bool isSupportProcessing { get; set; }
public List childCategorys { get; set; }
public List featureInfos { get; set; }
}
public class ChildCategorys
{
///
/// 子类目ID
///
public long id { get; set; }
///
/// 子类目名称
///
public string name { get; set; }
///
/// 是否叶子类目(只有叶子类目才能发布商品)
///
public bool isLeaf { get; set; }
///
/// 类目的类型:1表示cbu类目,2表示gallop类目
///
public string categoryType { get; set; }
}
public class FeatureInfos
{
///
/// 名称
///
public string key { get; set; }
///
/// 值
///
public string value { get; set; }
///
/// 状态
///
public string status { get; set; }
///
/// 是否继承到子元素上
///
public bool hierarchy { get; set; }
}
}