mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-06 23:02:48 +08:00
Merge branch 'master' of https://github.com/top-think/think
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
namespace think;
|
namespace think;
|
||||||
|
|
||||||
T('controller/Jump');
|
\think\Loader::import('controller/Jump', TRAIT_PATH, EXT);
|
||||||
|
|
||||||
class Controller
|
class Controller
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
|
|
||||||
namespace think\model;
|
namespace think\model;
|
||||||
|
|
||||||
T('model/Adv');
|
\think\Loader::import('model/Adv', TRAIT_PATH, EXT);
|
||||||
T('model/Transaction');
|
\think\Loader::import('model/Transaction', TRAIT_PATH, EXT);
|
||||||
|
|
||||||
class Adv extends \think\Model
|
class Adv extends \think\Model
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ namespace think\model;
|
|||||||
use think\Lang;
|
use think\Lang;
|
||||||
use think\Loader;
|
use think\Loader;
|
||||||
|
|
||||||
T('modle/Adv');
|
\think\Loader::import('modle/Adv', TRAIT_PATH, EXT);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MongoModel模型类
|
* MongoModel模型类
|
||||||
|
|||||||
@@ -11,7 +11,8 @@
|
|||||||
|
|
||||||
namespace think\model;
|
namespace think\model;
|
||||||
|
|
||||||
T('model/Relation');
|
\think\Loader::import('model/Relation', TRAIT_PATH, EXT);
|
||||||
|
|
||||||
class Relation extends \think\Model
|
class Relation extends \think\Model
|
||||||
{
|
{
|
||||||
use \traits\model\Relation;
|
use \traits\model\Relation;
|
||||||
|
|||||||
@@ -11,7 +11,8 @@
|
|||||||
|
|
||||||
namespace think\model;
|
namespace think\model;
|
||||||
|
|
||||||
T('model/View');
|
\think\Loader::import('model/View', TRAIT_PATH, EXT);
|
||||||
|
|
||||||
class View extends \think\Model
|
class View extends \think\Model
|
||||||
{
|
{
|
||||||
use \traits\model\View;
|
use \traits\model\View;
|
||||||
|
|||||||
Reference in New Issue
Block a user