前台部分接口

This commit is contained in:
2025-05-07 14:48:34 +08:00
parent 6e963b23b0
commit d3bb8380e2
19 changed files with 575 additions and 62 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use App\BaseApp\BaseController;
use App\Service\CollectionService;
class CollectionController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->service = CollectionService::getInstance();
$this->insertField = ['project_id'];
}
}