<?php
namespace app\adminapi\controller\v1\***;
use app\adminapi\controller\AuthController;
use app\adminapi\services\**\**;
use think\facade\App;
class A extends AuthController
{
protected $service;
public function __construct(App $app, aServices $service, ShopServices $shopServices
{
parent::__construct($app);
$this->service = $service;
}
public function export()
{
//接收参数
$where = $this->request->postMore([
['shop_id'],
['state'],
]);
$this->validate($req_params, \app\adminapi\validate\price\AValidate::class, 'export');
}