2021-05-22 11:02:45 +08:00

80 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\Users as usersModel;
class Users extends CatchController
{
protected $usersModel;
public function __construct(UsersModel $usersModel)
{
$this->usersModel = $usersModel;
}
/**
* 列表
* @time 2020年12月27日 19:04
* @param Request $request
*/
public function index(Request $request) : \think\Response
{
return CatchResponse::paginate($this->usersModel->getList());
}
/**
* 保存信息
* @time 2020年12月27日 19:04
* @param Request $request
*/
public function save(Request $request) : \think\Response
{
return CatchResponse::success($this->usersModel->storeBy($request->post()));
}
/**
* 读取
* @time 2020年12月27日 19:04
* @param $id
*/
public function read($id) : \think\Response
{
return CatchResponse::success($this->usersModel->findBy($id));
}
/**
* 更新
* @time 2020年12月27日 19:04
* @param Request $request
* @param $id
*/
public function update(Request $request, $id) : \think\Response
{
return CatchResponse::success($this->usersModel->updateBy($id, $request->post()));
}
/**
* 删除
* @time 2020年12月27日 19:04
* @param $id
*/
public function delete($id) : \think\Response
{
return CatchResponse::success($this->usersModel->deleteBy($id));
}
}