23 lines
608 B
PHP
Executable File
23 lines
608 B
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 宏驰云科技开发团队 版权所有 拥有最终解释权
|
|
// +----------------------------------------------------------------------
|
|
|
|
// | Author: HcyShop-松鼠
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
use app\api\logic\FootPrintLogic;
|
|
|
|
class Footprint extends ApiBase
|
|
{
|
|
public $like_not_need_login = ['lists'];
|
|
|
|
public function lists()
|
|
{
|
|
$lists = FootPrintLogic::lists();
|
|
$this->_success('获取成功', $lists);
|
|
}
|
|
} |