19 lines
541 B
PHP
19 lines
541 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api\CodeGeneration;
|
|
|
|
use App\BaseApp\BaseController;
|
|
use App\Service\CodeGeneration\OrderDetailService;
|
|
|
|
class OrderDetailController extends BaseController
|
|
{
|
|
//
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->insertField = ["order_id","product_id","quantity","price","subtotal","snapshot"];
|
|
$this->updateField = ["id","order_id","product_id","quantity","price","subtotal","snapshot"];
|
|
$this->service = OrderDetailService::getInstance();
|
|
}
|
|
}
|