using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// UseDetail Data Structure.
///
[Serializable]
public class UseDetail : AopObject
{
///
/// 实付金额,单位是分
///
[XmlElement("actual_amount")]
public long ActualAmount { get; set; }
///
/// 应付金额,单位是分
///
[XmlElement("amount")]
public long Amount { get; set; }
///
/// 权益使用的时间,格式yyyy-MM-dd HH:mm:ss (订单支付时间)
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 使用的权益关联的商品信息
///
[XmlElement("goods_info")]
public BenifitGoodsInfo GoodsInfo { get; set; }
}
}