mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-02 21:55:50 +08:00
39 lines
637 B
PHP
39 lines
637 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface tgstockcost_interface_cost
|
||
{
|
||
/**
|
||
* 获取仓库数据
|
||
* @params null
|
||
* @return bool
|
||
*/
|
||
//public function branch();
|
||
|
||
/**
|
||
* 创建期初数据队列
|
||
* @params null
|
||
* @return bool
|
||
*/
|
||
public function create_queue();
|
||
|
||
|
||
/**
|
||
* 执行期初数据队列
|
||
* @params null
|
||
* @return bool
|
||
*/
|
||
public function run_queue($params);
|
||
|
||
|
||
/**
|
||
* 出入库操作计算成本方法
|
||
* @params $io出入库类型 $data出入库数据
|
||
* @return void
|
||
*/
|
||
function iostock_set($io,$data);
|
||
} |