using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BkPosGoodsInfo Data Structure.
///
[Serializable]
public class BkPosGoodsInfo : AopObject
{
///
/// 商品名称
///
[XmlElement("goods_name")]
public string GoodsName { get; set; }
///
/// 商品金额
///
[XmlElement("goods_price")]
public string GoodsPrice { get; set; }
}
}