AlipayBossOrderApplyModel.cs 735 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using Newtonsoft.Json;
  3. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  4. {
  5. /// <summary>
  6. /// AlipayBossOrderApplyModel Data Structure.
  7. /// </summary>
  8. [Serializable]
  9. public class AlipayBossOrderApplyModel : AlipayObject
  10. {
  11. /// <summary>
  12. /// synchronize
  13. /// </summary>
  14. [JsonProperty("operation_type")]
  15. public string OperationType { get; set; }
  16. /// <summary>
  17. /// 订单号
  18. /// </summary>
  19. [JsonProperty("order_no")]
  20. public string OrderNo { get; set; }
  21. /// <summary>
  22. /// 订单类型
  23. /// </summary>
  24. [JsonProperty("order_type")]
  25. public string OrderType { get; set; }
  26. }
  27. }