更新文件

This commit is contained in:
2019-06-29 21:53:41 +08:00
parent a07fd7959c
commit 22d9666102
32 changed files with 450 additions and 13 deletions

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

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

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

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

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

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

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

@@ -0,0 +1,9 @@
<?php
namespace app\model;
use think\Model;
class Client 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/Content.php Normal file
View File

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

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

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

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

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

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

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