multi-store/app/api/controller/branch_product/BranchProductController.php

20 lines
346 B
PHP
Raw Normal View History

2024-09-23 18:45:57 +08:00
<?php
namespace app\api\controller\branch_product;
use app\api\controller\BaseApiController;
use app\api\lists\branch_product\BranchProductLists;
class BranchProductController extends BaseApiController
{
/**
* 商品列表
*/
public function lists()
{
return $this->dataLists(new BranchProductLists());
}
}