模型创建

This commit is contained in:
2025-04-28 16:15:09 +08:00
parent 02312397b3
commit dfb7acab05
14 changed files with 225 additions and 0 deletions

16
app/Models/UserModal.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 用户表
*/
class UserModal extends Model
{
//
protected $table = 'users';
protected $guarded = [];
}