项目相关接口、图片视频上传

This commit is contained in:
2025-05-06 16:18:22 +08:00
parent cbd0b19b91
commit cd304275b8
14 changed files with 416 additions and 21 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Http\Controllers;
use App\BaseApp\BaseController;
use App\Service\LabelService;
use App\Service\ProjectService;
use App\Service\RoleService;
class LabelController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->service = LabelService::getInstance();
$this->insertField = ['name', 'pid', 'value'];
$this->updateField = ['id', 'name', 'pid', 'value'];
}
}