2020-09-11 18:19:06 +08:00

45 lines
1.1 KiB
Plaintext
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
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
namespace {NAMESPACE};
use catcher\base\CatchController;
class {CLASS} extends CatchController
{
public function index()
{
return $this->fetch();
}
public function create()
{
return $this->fetch();
}
public function save()
{}
public function read()
{}
public function edit()
{
return $this->fetch();
}
public function update()
{}
public function delete()
{}
}