Files
nl-mall-api/app/Http/Controllers/Api/CodeGeneration/ProductLabelController.php

19 lines
428 B
PHP
Raw Normal View History

2025-05-19 16:54:25 +08:00
<?php
namespace App\Http\Controllers\Api\CodeGeneration;
use App\BaseApp\BaseController;
use App\Service\CodeGeneration\ProductLabelService;
class ProductLabelController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->insertField = ["name"];
$this->updateField = ["id","name"];
$this->service = ProductLabelService::getInstance();
}
}