GetStockInventoryRequest.php
412 字节
<?php
namespace Lackoxygen\TopWarehouse\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';
}
}