TaobaoTbkDgNewuserOrderGetOrderData.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability2138.Domain;
  5. public class TaobaoTbkDgNewuserOrderGetOrderData
  6. {
  7. /*
  8. 预估佣金
  9. */
  10. private string? commission;
  11. /*
  12. 收货时间
  13. */
  14. private string? confirmReceiveTime;
  15. /*
  16. 支付时间
  17. */
  18. private string? payTime;
  19. /*
  20. 订单号
  21. */
  22. private string? orderNo;
  23. [JsonPropertyName("commission")]
  24. public string? Commission
  25. {
  26. get => commission;
  27. set => this.commission = value;
  28. }
  29. [JsonPropertyName("confirm_receive_time")]
  30. public string? ConfirmReceiveTime
  31. {
  32. get => confirmReceiveTime;
  33. set => this.confirmReceiveTime = value;
  34. }
  35. [JsonPropertyName("pay_time")]
  36. public string? PayTime
  37. {
  38. get => payTime;
  39. set => this.payTime = value;
  40. }
  41. [JsonPropertyName("order_no")]
  42. public string? OrderNo
  43. {
  44. get => orderNo;
  45. set => this.orderNo = value;
  46. }
  47. }