NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayBossFncInvoicereceipt...

43 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayBossFncInvoicereceiptCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBossFncInvoicereceiptCreateModel : AopObject
{
/// <summary>
/// 账单金额变更消息事件码 AR_MTHLY_BILL_CREATE:应收账单创建, AR_MTHLY_BILL_CHANGE:应收金额更新
/// </summary>
[XmlElement("event_code")]
public string EventCode { get; set; }
/// <summary>
/// 账单金额变更消息事件类型 CREATE:创建事件,UPDATE:更新事件
/// </summary>
[XmlElement("event_type")]
public string EventType { get; set; }
/// <summary>
/// 月帐单信息
/// </summary>
[XmlElement("monthly_bill")]
public ArMonthlyBillDTO MonthlyBill { get; set; }
/// <summary>
/// 事件全局id可以使用uuid
/// </summary>
[XmlElement("msg_id")]
public string MsgId { get; set; }
/// <summary>
/// 消息来源 01:主站02芝麻03:金融云,04:微贷
/// </summary>
[XmlElement("out_biz_type")]
public string OutBizType { get; set; }
}
}