using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StuffInfo Data Structure. /// [Serializable] public class StuffInfo : AopObject { /// /// 商品描述 /// [XmlElement("description")] public string Description { get; set; } /// /// 扩展字段,保留 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 商品名称 /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 物料商品SKU号 /// [XmlElement("sku_no")] public string SkuNo { get; set; } /// /// 商品规格描述 /// [XmlElement("standard_description")] public string StandardDescription { get; set; } } }