using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BillSendExtInfo Data Structure. /// [Serializable] public class BillSendExtInfo : AopObject { /// /// 分账金额 /// [XmlElement("royalty_amount")] public string RoyaltyAmount { get; set; } /// /// 2088xxx /// [XmlElement("trans_in_pid")] public string TransInPid { get; set; } } }