43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// InsCoupon Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class InsCoupon : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 实际使用的权益值,可选不唯一,可能是金额(分),也可能是业务约定的其他描述
|
||
/// </summary>
|
||
[XmlElement("actual_coupon_value")]
|
||
public string ActualCouponValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 实际使用的折扣金额(分),可选不唯一
|
||
/// </summary>
|
||
[XmlElement("actual_discount_cash")]
|
||
public long ActualDiscountCash { get; set; }
|
||
|
||
/// <summary>
|
||
/// 权益ID,必选不唯一,营销域分配
|
||
/// </summary>
|
||
[XmlElement("coupon_id")]
|
||
public string CouponId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 权益类型,可选不唯一,营销域分配
|
||
/// </summary>
|
||
[XmlElement("coupon_type")]
|
||
public string CouponType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 权益值,可选不唯一,可能是金额(分),也可能是业务约定的其他描述
|
||
/// </summary>
|
||
[XmlElement("coupon_value")]
|
||
public string CouponValue { get; set; }
|
||
}
|
||
}
|