You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
617 B
32 lines
617 B
<?php |
|
/** |
|
* ApiModule.php |
|
* User: ChenLong |
|
* DateTime: 2020-12-11 11:08:36 |
|
*/ |
|
|
|
namespace app\admin\controller\system; |
|
|
|
use \app\common\controller\Admin; |
|
|
|
|
|
/** |
|
* Class ApiModule |
|
* @package app\admin\controller\ApiModule |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class ApiModule extends Admin |
|
{ |
|
/** |
|
* 列表数据接口 |
|
* @return mixed|string|\think\Collection|\think\response\Json |
|
* @throws \app\common\SdException |
|
*/ |
|
public function listData() |
|
{ |
|
return $this |
|
->setField('i.id,i.item_name,url_prefix,i.update_time') |
|
->listsRequest(); |
|
} |
|
|
|
}
|
|
|