80 lines
2.3 KiB
PHP
Raw Normal View History

2021-05-22 11:02:45 +08:00
<?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\FormData as formDataModel;
class FormData extends CatchController
{
protected $formDataModel;
public function __construct(FormDataModel $formDataModel)
{
$this->formDataModel = $formDataModel;
}
/**
* 列表
* @time 2020年12月27日 20:35
* @param Request $request
*/
public function index(Request $request) : \think\Response
{
return CatchResponse::paginate($this->formDataModel->getList());
}
/**
* 保存信息
* @time 2020年12月27日 20:35
* @param Request $request
*/
public function save(Request $request) : \think\Response
{
return CatchResponse::success($this->formDataModel->storeBy($request->post()));
}
/**
* 读取
* @time 2020年12月27日 20:35
* @param $id
*/
public function read($id) : \think\Response
{
return CatchResponse::success($this->formDataModel->findBy($id));
}
/**
* 更新
* @time 2020年12月27日 20:35
* @param Request $request
* @param $id
*/
public function update(Request $request, $id) : \think\Response
{
return CatchResponse::success($this->formDataModel->updateBy($id, $request->post()));
}
/**
* 删除
* @time 2020年12月27日 20:35
* @param $id
*/
public function delete($id) : \think\Response
{
return CatchResponse::success($this->formDataModel->deleteBy($id));
}
}