apeblog/app/common/model/ModelTrait.php

17 lines
248 B
PHP

<?php
namespace app\common\model;
use think\db\BaseQuery;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
use think\db\Raw;
use think\Model;
trait ModelTrait
{
}