Files
OMS/app/omeauto/lib/branch/abstract.php
2025-12-28 23:13:25 +08:00

25 lines
627 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.
*/
/**
* ============================
* @Author: yaokangming
* @Version: 1.0
* @DateTime: 2020/9/8 17:16:49
* @describe: 类
* ============================
*/
abstract class omeauto_branch_abstract {
/**
* 优选仓库
* @param array $branchIds 仓库ID
* @param array $group 订单分组
* @param array $branchInfo 仓库库存信息
* @return array 仓库ID
*/
abstract public function process($branchIds, &$group, $branchInfo);
}