变更
This commit is contained in:
+8
-7
@@ -73,6 +73,8 @@ use Kiri\Annotation\Route\Route;
|
|||||||
use Kiri\Annotation\Route\RequestMethod;
|
use Kiri\Annotation\Route\RequestMethod;
|
||||||
use Kiri\Core\Str;
|
use Kiri\Core\Str;
|
||||||
use Kiri\Core\Json;
|
use Kiri\Core\Json;
|
||||||
|
use Kiri\Message\Handler\CoreMiddleware;
|
||||||
|
use app\Components\Middleware\OAuthMiddleware;
|
||||||
use Kiri\Message\Handler\Controller;
|
use Kiri\Message\Handler\Controller;
|
||||||
use JetBrains\PhpStorm\ArrayShape;
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use {$model_namespace}\\{$managerName};
|
use {$model_namespace}\\{$managerName};
|
||||||
@@ -181,7 +183,7 @@ use {$model_namespace}\\{$managerName};
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/add", method: RequestMethod::REQUEST_POST)]
|
#[Route(uri: "' . $_path . '/add", method: RequestMethod::REQUEST_POST)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionAdd(): string
|
public function actionAdd(): string
|
||||||
{
|
{
|
||||||
$model = new ' . $className . '();
|
$model = new ' . $className . '();
|
||||||
@@ -236,7 +238,7 @@ use {$model_namespace}\\{$managerName};
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/update", method: RequestMethod::REQUEST_POST)]
|
#[Route(uri: "' . $_path . '/update", method: RequestMethod::REQUEST_POST)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionUpdate(): string
|
public function actionUpdate(): string
|
||||||
{
|
{
|
||||||
$model = ' . $className . '::findOne($this->request->post(\'id\', 0));
|
$model = ' . $className . '::findOne($this->request->post(\'id\', 0));
|
||||||
@@ -273,7 +275,7 @@ use {$model_namespace}\\{$managerName};
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/batch-delete", method: RequestMethod::REQUEST_POST)]
|
#[Route(uri: "' . $_path . '/batch-delete", method: RequestMethod::REQUEST_POST)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionBatchDelete(): string
|
public function actionBatchDelete(): string
|
||||||
{
|
{
|
||||||
$_key = $this->request->array(\'ids\');
|
$_key = $this->request->array(\'ids\');
|
||||||
@@ -310,7 +312,7 @@ use {$model_namespace}\\{$managerName};
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/detail", method: RequestMethod::REQUEST_POST)]
|
#[Route(uri: "' . $_path . '/detail", method: RequestMethod::REQUEST_POST)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionDetail(): string
|
public function actionDetail(): string
|
||||||
{
|
{
|
||||||
$model = ' . $managerName . '::findOne($this->request->query(\'id\'));
|
$model = ' . $managerName . '::findOne($this->request->query(\'id\'));
|
||||||
@@ -342,7 +344,7 @@ use {$model_namespace}\\{$managerName};
|
|||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/delete", method: RequestMethod::REQUEST_POST)]
|
#[Route(uri: "' . $_path . '/delete", method: RequestMethod::REQUEST_POST)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionDelete(): string
|
public function actionDelete(): string
|
||||||
{
|
{
|
||||||
$_key = $this->request->int(\'id\', true);
|
$_key = $this->request->int(\'id\', true);
|
||||||
@@ -373,14 +375,13 @@ use {$model_namespace}\\{$managerName};
|
|||||||
|
|
||||||
|
|
||||||
$_path = ltrim($_path,'/');
|
$_path = ltrim($_path,'/');
|
||||||
|
|
||||||
return '
|
return '
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
#[Route(uri: "' . $_path . '/list", method: RequestMethod::REQUEST_GET)]
|
#[Route(uri: "' . $_path . '/list", method: RequestMethod::REQUEST_GET)]
|
||||||
#[Middleware(middleware: [])]
|
#[Middleware(middleware: [CoreMiddleware::class, OAuthMiddleware::class])]
|
||||||
public function actionList(): string
|
public function actionList(): string
|
||||||
{
|
{
|
||||||
//分页处理
|
//分页处理
|
||||||
|
|||||||
Reference in New Issue
Block a user