5 changed files with 139 additions and 0 deletions
@ -0,0 +1,52 @@
|
||||
<?php |
||||
|
||||
namespace Plugins\Notebook\Controller\Admin; |
||||
|
||||
use App\Exception\ApiMessageException; |
||||
use App\Controller\AbstractController; |
||||
use Plugins\Notebook\Service\Admin\NotebookUserService; |
||||
use App\Middleware\Admin\AuthenticateMiddleware; |
||||
use App\Middleware\Admin\PermissionsMiddleware; |
||||
use App\Util\Response; |
||||
use Hyperf\HttpServer\Annotation\Controller; |
||||
use Hyperf\HttpServer\Annotation\GetMapping; |
||||
use Hyperf\HttpServer\Annotation\PostMapping; |
||||
use Hyperf\HttpServer\Annotation\Middlewares; |
||||
use Hyperf\Validation\Annotation\Scene; |
||||
use Psr\Http\Message\ResponseInterface; |
||||
|
||||
/** |
||||
* 笔记协作人员控制器 |
||||
*/ |
||||
#[Controller(prefix: 'admin/plugins/notebook_user')] |
||||
#[Middlewares([AuthenticateMiddleware::class, PermissionsMiddleware::class])] |
||||
class NotebookUserController extends AbstractController |
||||
{ |
||||
|
||||
/** |
||||
* 列表数据 |
||||
* |
||||
* @return ResponseInterface |
||||
*/ |
||||
#[GetMapping(path: 'lists-data')] |
||||
public function listsData(): ResponseInterface |
||||
{ |
||||
return Response::json()->success(NotebookUserService::aop()->lists()); |
||||
} |
||||
|
||||
/** |
||||
* 更新数据 |
||||
* |
||||
* @return ResponseInterface |
||||
* @throws ApiMessageException |
||||
*/ |
||||
#[Scene('update')] |
||||
#[PostMapping(path: 'update')] |
||||
public function update(): ResponseInterface |
||||
{ |
||||
NotebookUserService::aop()->update($this->request->post()); |
||||
|
||||
return Response::json()->success(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,36 @@
|
||||
<?php |
||||
|
||||
namespace Plugins\Notebook\Service\Admin; |
||||
|
||||
|
||||
use App\Service\Admin\AbstractAdminService; |
||||
use App\Service\Admin\Traits\DestroyServiceTrait; |
||||
use App\Service\Admin\Traits\StoreServiceTrait; |
||||
use App\Service\Admin\Traits\UpdateServiceTrait; |
||||
use App\Service\Admin\Traits\SwitchServiceTrait; |
||||
use Plugins\Notebook\Model\NotebookUser; |
||||
use App\Util\EasySearch; |
||||
|
||||
/** |
||||
* Class NotebookUserService |
||||
*/ |
||||
class NotebookUserService extends AbstractAdminService |
||||
{ |
||||
use StoreServiceTrait, UpdateServiceTrait, DestroyServiceTrait, SwitchServiceTrait; |
||||
|
||||
public function __construct() |
||||
{ |
||||
$this->model = new NotebookUser(); |
||||
} |
||||
|
||||
/** |
||||
* @return array |
||||
*/ |
||||
public function lists(): array |
||||
{ |
||||
$query = $this->model->select(["notebook_user.id","notebook_user.notebook_id","notebook_user.administrators_id","notebook_user.mode","notebook_user.status","notebook_user.create_time"]); |
||||
|
||||
return EasySearch::create($query)->getData(); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue