1
0

AlipayBossFncInvoicereceiptCreateModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayBossFncInvoicereceiptCreateModel Data Structure.
  6. /// </summary>
  7. public class AlipayBossFncInvoicereceiptCreateModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 账单金额变更消息事件码 AR_MTHLY_BILL_CREATE:应收账单创建, AR_MTHLY_BILL_CHANGE:应收金额更新
  11. /// </summary>
  12. [JsonPropertyName("event_code")]
  13. public string EventCode { get; set; }
  14. /// <summary>
  15. /// 账单金额变更消息事件类型 CREATE:创建事件,UPDATE:更新事件
  16. /// </summary>
  17. [JsonPropertyName("event_type")]
  18. public string EventType { get; set; }
  19. /// <summary>
  20. /// 月帐单信息
  21. /// </summary>
  22. [JsonPropertyName("monthly_bill")]
  23. public ArMonthlyBillDTO MonthlyBill { get; set; }
  24. /// <summary>
  25. /// 事件全局id,可以使用uuid
  26. /// </summary>
  27. [JsonPropertyName("msg_id")]
  28. public string MsgId { get; set; }
  29. /// <summary>
  30. /// 消息来源 01:主站,02:芝麻,03:金融云,04:微贷
  31. /// </summary>
  32. [JsonPropertyName("out_biz_type")]
  33. public string OutBizType { get; set; }
  34. }
  35. }