using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// GoodsDetailInfo Data Structure. /// [Serializable] public class GoodsDetailInfo : AopObject { /// /// 商品的编号 /// [XmlElement("goods_id")] public string GoodsId { get; set; } /// /// 商品名称 /// [XmlElement("goods_name")] public string GoodsName { get; set; } /// /// 商品单位 /// [XmlElement("goods_unit")] public string GoodsUnit { get; set; } /// /// 商品数量 /// [XmlElement("quantity")] public string Quantity { get; set; } /// /// 商品单价,单位元 /// [XmlElement("unit_price")] public string UnitPrice { get; set; } } }