Files
OMS/app/erpapi/lib/front/response/o2o/abstract.php
2025-12-28 23:13:25 +08:00

25 lines
555 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.
*/
abstract class erpapi_front_response_o2o_abstract extends erpapi_front_response_abstract
{
const MAX_LIMIT = 100;
/**
* __construct
* @param mixed $app app
* @return mixed 返回值
*/
public function __construct($app)
{
parent::__construct($app);
if (!$_SESSION['branch_id']) {
throw new Exception("无权查看:管理员未绑定门店");
}
}
}