35 lines
466 B
Plaintext
Raw Normal View History

2019-12-18 18:54:01 +08:00
<?php
namespace {NAMESPACE};
2019-12-19 07:19:15 +08:00
use catcher\base\CatchController;
2019-12-18 18:54:01 +08:00
2019-12-19 07:19:15 +08:00
class {CLASS} extends CatchController
2019-12-18 18:54:01 +08:00
{
public function index()
{
2019-12-19 07:19:15 +08:00
return $this->fetch();
2019-12-18 18:54:01 +08:00
}
public function create()
{
2019-12-19 07:19:15 +08:00
return $this->fetch();
2019-12-18 18:54:01 +08:00
}
public function save()
{}
public function read()
{}
public function edit()
{
2019-12-19 07:19:15 +08:00
return $this->fetch();
2019-12-18 18:54:01 +08:00
}
public function update()
{}
public function delete()
{}
}