mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 21:46:43 +08:00
16 lines
304 B
PHP
16 lines
304 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
interface siso_receipt_iostock_interface {
|
||
|
||
/**
|
||
*
|
||
* 根据单据主键id获取出入库信息
|
||
* @param int $id
|
||
*/
|
||
function get_io_data($params);
|
||
|
||
} |