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
638 B
32 lines
638 B
<?php |
|
/** |
|
* Banner.php |
|
* User: ChenLong |
|
* DateTime: 2021-01-11 17:40:00 |
|
*/ |
|
|
|
namespace app\admin\controller; |
|
|
|
use \app\common\controller\Admin; |
|
|
|
|
|
/** |
|
* Class Banner |
|
* @package app\admin\controller\Banner |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class Banner extends Admin |
|
{ |
|
/** |
|
* 列表数据接口 |
|
* @return mixed|string|\think\Collection|\think\response\Json |
|
* @throws \app\common\SdException |
|
*/ |
|
public function listData() |
|
{ |
|
return $this |
|
->setField('i.id,i.title,i.cover,i.cover_url,i.sort,i.create_time,i.update_time,i.delete_time') |
|
->listsRequest(); |
|
} |
|
|
|
}
|
|
|