using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PrizeOrderVO Data Structure.
///
[Serializable]
public class PrizeOrderVO : AopObject
{
///
/// 发奖系数。
///
[XmlElement("modulus")]
public long Modulus { get; set; }
///
/// 返奖奖品ID。
///
[XmlElement("prize_id")]
public string PrizeId { get; set; }
///
/// 奖品名称。
///
[XmlElement("prize_name")]
public string PrizeName { get; set; }
///
/// 发奖单据ID
///
[XmlElement("prize_order_id")]
public string PrizeOrderId { get; set; }
///
/// 返奖奖品类型。
///
[XmlElement("prize_type")]
public string PrizeType { get; set; }
}
}