19 lines
452 B
PHP
19 lines
452 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\CodeGeneration;
|
|
|
|
use App\BaseApp\BaseController;
|
|
use App\Service\CodeGeneration\ProductImageService;
|
|
|
|
class ProductImageController extends BaseController
|
|
{
|
|
//
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->insertField = ["url","product_id"];
|
|
$this->updateField = ["id","url","product_id"];
|
|
$this->service = ProductImageService::getInstance();
|
|
}
|
|
}
|