using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInvoiceResultGetModel Data Structure. /// [Serializable] public class AlipayEbppInvoiceResultGetModel : AopObject { /// /// 开票申请id /// [XmlElement("apply_id")] public string ApplyId { get; set; } /// /// 业务平台对应的订单号 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 销售方税号 /// [XmlElement("payee_register_no")] public string PayeeRegisterNo { get; set; } /// /// 业务平台code, 由发票中台分配 /// [XmlElement("platform_code")] public string PlatformCode { get; set; } /// /// 业务平台商户id /// [XmlElement("platform_user_id")] public string PlatformUserId { get; set; } } }