api接口

This commit is contained in:
wanyongkang
2020-10-05 13:43:53 +08:00
parent a331e3f1d5
commit ce067b91dc
9 changed files with 198 additions and 103 deletions

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

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