初始提交

This commit is contained in:
wanyongkang
2020-10-03 17:23:32 +08:00
commit a331e3f1d5
11 changed files with 676 additions and 0 deletions

11
app/test/model/User.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace app\test\model;
use fastphp\base\Model;
class User extends Model
{
protected $table = 'user';
}