NewGaoKaoApi/PaymentSDK/AliPay/Domain/CreditPayDiscountVO.cs

43 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// CreditPayDiscountVO Data Structure.
/// </summary>
[Serializable]
public class CreditPayDiscountVO : AopObject
{
/// <summary>
/// 折扣描述
/// </summary>
[XmlElement("discount_desc")]
public string DiscountDesc { get; set; }
/// <summary>
/// 折扣名
/// </summary>
[XmlElement("discount_name")]
public string DiscountName { get; set; }
/// <summary>
/// 整体折扣利率,仅在均匀打折下生效,小数形式
/// </summary>
[XmlElement("full_discount_rate")]
public string FullDiscountRate { get; set; }
/// <summary>
/// 是否有营销
/// </summary>
[XmlElement("has_discount")]
public bool HasDiscount { get; set; }
/// <summary>
/// 是否是非均匀打折true-非均匀打折false-均匀打折
/// </summary>
[XmlElement("is_uneven_discount")]
public bool IsUnevenDiscount { get; set; }
}
}