sku完成,订单、商品上下架管理正在搞

This commit is contained in:
2025-05-21 17:04:10 +08:00
parent 035ab1105c
commit fc503cb95a
18 changed files with 239579 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers\Api\CodeGeneration;
use App\BaseApp\BaseController;
use App\Service\CodeGeneration\RegionService;
class RegionController extends BaseController
{
//
public function __construct()
{
parent::__construct();
$this->insertField = ["name","pid", 'price'];
$this->updateField = ["id","name","pid", 'price'];
$this->service = RegionService::getInstance();
}
}