19 lines
585 B
PHP
19 lines
585 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\CodeGeneration;
|
|
|
|
use App\BaseApp\BaseController;
|
|
use App\Service\CodeGeneration\ProductService;
|
|
|
|
class ProductController extends BaseController
|
|
{
|
|
//
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->insertField = ["title","introduction","cover", "images", "labels","description","price","classification_id"];
|
|
$this->updateField = ["id","title","introduction","cover", "images", "labels","description","price","classification_id"];
|
|
$this->service = ProductService::getInstance();
|
|
}
|
|
}
|