更新目录结构

This commit is contained in:
molong
2022-04-29 20:26:03 +08:00
parent 4ef43e0258
commit ca1fbd6fd1
89 changed files with 529 additions and 381 deletions

View File

@@ -8,7 +8,7 @@
// +----------------------------------------------------------------------
namespace app\controller\api;
use app\model\Attach as AttachModel;
use app\model\system\Attach as AttachModel;
/**
* @title 附件管理

View File

@@ -8,7 +8,7 @@
// +----------------------------------------------------------------------
namespace app\controller\api;
use app\model\Config as ConfigM;
use app\model\system\Config as ConfigM;
/**
* @title 基础功能

View File

@@ -9,9 +9,9 @@
namespace app\controller\api;
use think\facade\Db;
use app\model\Category;
use app\model\Model;
use app\model\Attribute;
use app\model\module\Category;
use app\model\module\Model;
use app\model\module\Attribute;
/**
* @title 内容管理

View File

@@ -8,8 +8,8 @@
// +----------------------------------------------------------------------
namespace app\controller\api;
use app\model\Department as DepartmentM;
use app\model\Role;
use app\model\auth\Department as DepartmentM;
use app\model\auth\Role;
use sent\tree\Tree;
/**

View File

@@ -9,8 +9,8 @@
namespace app\controller\api;
use think\facade\Db;
use \app\model\Form as FormModel;
use \app\model\FormAttr;
use \app\model\form\Form as FormModel;
use \app\model\form\FormAttr;
class Form extends Base {

View File

@@ -8,7 +8,7 @@
// +----------------------------------------------------------------------
namespace app\controller\api;
use app\model\Member;
use app\model\auth\Member;
use think\facade\Event;
use think\Request;

View File

@@ -8,10 +8,10 @@
// +----------------------------------------------------------------------
namespace app\controller\api;
use app\model\Member;
use app\model\MemberLog;
use app\model\Role;
use app\model\RoleAccess;
use app\model\auth\Member;
use app\model\auth\MemberLog;
use app\model\auth\Role;
use app\model\auth\RoleAccess;
use xin\helper\Str;
/**