using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CreditPayChargePricingVO Data Structure. /// [Serializable] public class CreditPayChargePricingVO : AopObject { /// /// 实际费用,单位元 /// [XmlElement("actual_charge")] public string ActualCharge { get; set; } /// /// 实际费率,小数形式 /// [XmlElement("actual_charge_rate")] public string ActualChargeRate { get; set; } /// /// 费用名目 /// [XmlElement("charge_name")] public string ChargeName { get; set; } /// /// 原始费用,单位元 /// [XmlElement("origin_charge")] public string OriginCharge { get; set; } /// /// 原始费率,小数形式 /// [XmlElement("origin_charge_rate")] public string OriginChargeRate { get; set; } } }