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