GetOrderListResultBean.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. namespace App\Http\Bean\Controller\Order;
  3. /**
  4. * @SWG\Definition(
  5. * )
  6. */
  7. class GetOrderListResultBean
  8. {
  9. /**
  10. * @SWG\Property(
  11. * description="总数量"
  12. * )
  13. * @var string
  14. */
  15. public $total;
  16. /**
  17. * @SWG\Property(
  18. * description="数据",
  19. * @SWG\Items(
  20. * @SWG\Property(
  21. * property="order_number",
  22. * type="string",
  23. * description="订单编号"
  24. * ),
  25. * @SWG\Property(
  26. * property="product_name",
  27. * type="string",
  28. * description="商品名称"
  29. * ),
  30. * @SWG\Property(
  31. * property="produt_unit_price",
  32. * type="string",
  33. * description="商品单价"
  34. * ),
  35. * @SWG\Property(
  36. * property="product_num",
  37. * type="string",
  38. * description="商品数量"
  39. * ),
  40. * @SWG\Property(
  41. * property="order_price",
  42. * type="string",
  43. * description="订单总金额"
  44. * ),
  45. * @SWG\Property(
  46. * property="order_realy_price",
  47. * type="string",
  48. * description="订单实际支付金额"
  49. * ),
  50. * @SWG\Property(
  51. * property="order_status",
  52. * type="string",
  53. * description="订单状态(0未支付1已支付2已收获3已结算4全部退款或风控5部分退款6已取消)"
  54. * ),
  55. * @SWG\Property(
  56. * property="order_pay_at",
  57. * type="string",
  58. * description="订单支付时间"
  59. * ),
  60. * @SWG\Property(
  61. * property="order_commission",
  62. * type="string",
  63. * description="佣金(分)"
  64. * ),
  65. * @SWG\Property(
  66. * property="order_refund_commission",
  67. * type="string",
  68. * description="退款佣金"
  69. * ),
  70. * @SWG\Property(
  71. * property="order_refund_at",
  72. * type="string",
  73. * description="退款时间"
  74. * ),
  75. * @SWG\Property(
  76. * property="order_refund_price",
  77. * type="string",
  78. * description="退款金额"
  79. * ),
  80. * @SWG\Property(
  81. * property="order_platform_type",
  82. * type="string",
  83. * description="订单平台类型(1淘宝2拼多多3京东4美团5返不停)"
  84. * ),
  85. * @SWG\Property(
  86. * property="created_at",
  87. * type="string",
  88. * description="创建时间"
  89. * )
  90. * )
  91. * )
  92. * @var array
  93. */
  94. private $list;
  95. }