OrderNotifyRequest.php 560 字节
<?php


namespace Lackoxygen\TopWarehouse\Request\Order;


use Lackoxygen\TopWarehouse\Request\Request;

class OrderNotifyRequest extends Request
{
    /**
     * 订单号
     *
     * @var string
     */
    public $order_id;

    /**
     * 1:成功;2:失败
     *
     * @var string
     */
    public $status;

    /**
     * 如失败,则放错误信息
     *
     * @var string
     */
    public $notes;

    protected function initialize(): void
    {
        $this->contentType = 'application/json';
        $this->method      = 'POST';
    }
}