using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Domain { /// /// PropValue Data Structure. /// [Serializable] public class PropValue : TopObject { /// /// 类目ID /// [XmlElement("cid")] public long Cid { get; set; } /// /// 属性值feature /// [XmlArray("features")] [XmlArrayItem("feature")] public List Features { get; set; } /// /// 是否为父类目属性 /// [XmlElement("is_parent")] public bool IsParent { get; set; } /// /// 属性值 /// [XmlElement("name")] public string Name { get; set; } /// /// 属性值别名 /// [XmlElement("name_alias")] public string NameAlias { get; set; } /// /// 属性 ID /// [XmlElement("pid")] public long Pid { get; set; } /// /// 属性名 /// [XmlElement("prop_name")] public string PropName { get; set; } /// /// 排列序号。取值范围:大于零的整数 /// [XmlElement("sort_order")] public long SortOrder { get; set; } /// /// 状态。可选值:normal(正常),deleted(删除) /// [XmlElement("status")] public string Status { get; set; } /// /// 属性值ID /// [XmlElement("vid")] public long Vid { get; set; } } }