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