using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// GoodsDetail Data Structure. /// [Serializable] public class GoodsDetail : AopObject { /// /// 支付宝定义的统一商品编号 /// [XmlElement("alipay_goods_id")] public string AlipayGoodsId { get; set; } /// /// 商品描述信息 /// [XmlElement("body")] public string Body { get; set; } /// /// 商品类目树,从商品类目根节点到叶子节点的类目id组成,类目id值使用|分割 /// [XmlElement("categories_tree")] public string CategoriesTree { get; set; } /// /// 商品类目 /// [XmlElement("goods_category")] public string GoodsCategory { get; set; } /// /// 商品的编号 /// [XmlElement("goods_id")] public string GoodsId { get; set; } /// /// 商品名称 /// [XmlElement("goods_name")] public string GoodsName { get; set; } /// /// 商品单价,单位为元 /// [XmlElement("price")] public string Price { get; set; } /// /// 商品数量 /// [XmlElement("quantity")] public long Quantity { get; set; } /// /// 商品的展示地址 /// [XmlElement("show_url")] public string ShowUrl { get; set; } } }