mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
32 lines
534 B
PHP
32 lines
534 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
interface ome_branch_flow_interface
|
||
{
|
||
/**
|
||
* 显示页面内容
|
||
*
|
||
* @return void
|
||
* @author
|
||
**/
|
||
public function getContent($id);
|
||
|
||
/**
|
||
* 获取仓
|
||
*
|
||
* @return void
|
||
* @author
|
||
**/
|
||
public function getBranchList();
|
||
|
||
/**
|
||
* 列表展示
|
||
*
|
||
* @return void
|
||
* @author
|
||
**/
|
||
public function translateContent($content);
|
||
} |