cms first commit
This commit is contained in:
80
catch/cms/controller/Banners.php
Normal file
80
catch/cms/controller/Banners.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Catch-CMS Design On 2020
|
||||
// +----------------------------------------------------------------------
|
||||
// | CatchAdmin [Just Like ~ ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: JaguarJack [ njphper@gmail.com ]
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace catchAdmin\cms\controller;
|
||||
|
||||
use catcher\base\CatchRequest as Request;
|
||||
use catcher\CatchResponse;
|
||||
use catcher\base\CatchController;
|
||||
use catchAdmin\cms\model\Banners as bannersModel;
|
||||
|
||||
class Banners extends CatchController
|
||||
{
|
||||
protected $bannersModel;
|
||||
|
||||
public function __construct(BannersModel $bannersModel)
|
||||
{
|
||||
$this->bannersModel = $bannersModel;
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表
|
||||
* @time 2020年12月27日 19:58
|
||||
* @param Request $request
|
||||
*/
|
||||
public function index(Request $request) : \think\Response
|
||||
{
|
||||
return CatchResponse::paginate($this->bannersModel->getList());
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存信息
|
||||
* @time 2020年12月27日 19:58
|
||||
* @param Request $request
|
||||
*/
|
||||
public function save(Request $request) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->bannersModel->storeBy($request->post()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取
|
||||
* @time 2020年12月27日 19:58
|
||||
* @param $id
|
||||
*/
|
||||
public function read($id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->bannersModel->findBy($id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @time 2020年12月27日 19:58
|
||||
* @param Request $request
|
||||
* @param $id
|
||||
*/
|
||||
public function update(Request $request, $id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->bannersModel->updateBy($id, $request->post()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @time 2020年12月27日 19:58
|
||||
* @param $id
|
||||
*/
|
||||
public function delete($id) : \think\Response
|
||||
{
|
||||
return CatchResponse::success($this->bannersModel->deleteBy($id));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user