Files
spa-api/app/Http/Controllers/FileController.php
2025-05-07 14:48:34 +08:00

22 lines
441 B
PHP

<?php
namespace App\Http\Controllers;
use App\BaseApp\BaseController;
use App\Service\FileService;
use App\Service\ProjectService;
use App\Service\RoleService;
class FileController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->service = FileService::getInstance();
$this->insertField = ['url', 's'];
$this->updateField = ['id', 'url', 's'];
}
}