55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// VoucherVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class VoucherVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 券生效时间
|
|
/// </summary>
|
|
[XmlElement("gmt_active")]
|
|
public string GmtActive { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券失效时间
|
|
/// </summary>
|
|
[XmlElement("gmt_expired")]
|
|
public string GmtExpired { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券门槛金额,单位分
|
|
/// </summary>
|
|
[XmlElement("threshold_amount")]
|
|
public string ThresholdAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券面额,单位分
|
|
/// </summary>
|
|
[XmlElement("total_amount")]
|
|
public string TotalAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券实例id
|
|
/// </summary>
|
|
[XmlElement("voucher_id")]
|
|
public string VoucherId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券模板id
|
|
/// </summary>
|
|
[XmlElement("voucher_template_id")]
|
|
public string VoucherTemplateId { get; set; }
|
|
}
|
|
}
|