mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
29 lines
472 B
PHP
29 lines
472 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
* 库存查询
|
||
*
|
||
* @category
|
||
* @package
|
||
* @author chenping<chenping@shopex.cn>
|
||
* @version $Id: Z
|
||
*/
|
||
class erpapi_store_request_stock extends erpapi_store_request_abstract
|
||
{
|
||
|
||
/**
|
||
* 库存查询
|
||
*
|
||
* @return void
|
||
* @author
|
||
**/
|
||
public function stock_get($sdf)
|
||
{
|
||
return $this->succ();
|
||
}
|
||
}
|