using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CustScpBillAmtVO Data Structure. /// [Serializable] public class CustScpBillAmtVO : AopObject { /// /// 费用 /// [XmlElement("fee")] public string Fee { get; set; } /// /// 本金 /// [XmlElement("prin")] public string Prin { get; set; } } }