2019-12-19 07:19:15 +08:00

35 lines
466 B
Plaintext

<?php
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()
{}
}