GetStockInventoryRequest.php 481 字节
<?php


namespace Lackoxygen\TopWarehouse\Request\Inventory;


use Lackoxygen\TopWarehouse\Request\Request;

class GetStockInventoryRequest extends Request
{
    public $warehouse_id;

    public $goods_id;

    public $deliveryItemId;

    public $type;

    protected function initialize(): void
    {
        $this->contentType = 'application/json';
        $this->method      = 'POST';
        $this->path        = '/inventory.do?method=epass.wms.stock.inventory.get';
    }
}