mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-08 15:35:33 +08:00
14 lines
271 B
PHP
14 lines
271 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface base_admin_backup{
|
||
public function start();
|
||
public function end();
|
||
public function next();
|
||
public function get();
|
||
}
|