feat : deliver

This commit is contained in:
2025-04-03 16:39:34 +08:00
parent 41b9993f36
commit 45d65ad4e2
3 changed files with 128 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
<?php
declare(strict_types=1);
namespace App\Controller\Admin;
use App\Controller\AbstractController;
use App\Service\Admin\System\PrintPlantService;
class PrintPlantController extends AbstractController
{
public function add()
{
return (new PrintPlantService)->add();
}
public function edit()
{
return (new PrintPlantService)->edit();
}
public function delete()
{
return (new PrintPlantService)->delete();
}
public function list()
{
return (new PrintPlantService)->list();
}
}