创建数据库模型

This commit is contained in:
coolxitech 2024-11-09 11:38:40 +08:00
parent 6b3a33e40b
commit 06a0bda77b
8 changed files with 72 additions and 0 deletions

9
app/model/Account.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Account extends Model
{
}

9
app/model/Config.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Config extends Model
{
}

9
app/model/Dmlog.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Dmlog extends Model
{
}

9
app/model/Dmtask.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Dmtask extends Model
{
}

9
app/model/Domain.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Domain extends Model
{
}

9
app/model/Log.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Log extends Model
{
}

9
app/model/Optimizeip.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Optimizeip extends Model
{
}

9
app/model/User.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class User extends Model
{
}