Files
OMS/app/tgstockcost/lib/interface/cost.php
2025-12-28 23:13:25 +08:00

39 lines
637 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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);
}