init
This commit is contained in:
30
src/application/common/model/Special.php
Normal file
30
src/application/common/model/Special.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* 易优CMS
|
||||
* ============================================================================
|
||||
* 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
|
||||
* 网站地址: http://www.eyoucms.com
|
||||
* ----------------------------------------------------------------------------
|
||||
* 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
|
||||
* ============================================================================
|
||||
* Author: 陈风任 <491085389@qq.com>
|
||||
* Date: 2019-1-7
|
||||
*/
|
||||
|
||||
namespace app\common\model;
|
||||
|
||||
use think\Db;
|
||||
use think\Model;
|
||||
|
||||
/**
|
||||
* 数据库模型
|
||||
*/
|
||||
class Special extends Model
|
||||
{
|
||||
//初始化
|
||||
protected function initialize()
|
||||
{
|
||||
// 需要调用`Model`的`initialize`方法
|
||||
parent::initialize();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user