using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ItemBo Data Structure.
///
[Serializable]
public class ItemBo : AopObject
{
///
/// json 字符串表示额外信息
///
[XmlElement("attribute")]
public string Attribute { get; set; }
///
/// 描述信息
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// logo链接
///
[XmlElement("logo")]
public string Logo { get; set; }
///
/// 名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 原价
///
[XmlElement("origin_price")]
public long OriginPrice { get; set; }
///
/// 现价
///
[XmlElement("price")]
public long Price { get; set; }
}
}