first commit

This commit is contained in:
yanwenwu
2018-11-16 17:45:37 +08:00
parent a9865a2982
commit 4d8f109e10
235 changed files with 38293 additions and 36 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace app\$module\controller;
class $controller extends Base
{
public function index()
{
return $this->fetch();
}
public function create()
{
return $this->fetch();
}
public function edit()
{
return $this->fetch();
}
public function delete()
{}
}

View File

@@ -0,0 +1,8 @@
<?php
namespace app\models;
class $modelModel extends AbstractBaseModel
{
protected $name = '$model';
}

View File