// +---------------------------------------------------------------------- namespace App\Http\Controllers; use App\Services\WithdrawService; /** * 工资提现记录管理-控制器 * @author wesmiler * @since 2020/11/11 * Class WithdrawController * @package App\Http\Controllers */ class WithdrawController extends Backend { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * WithdrawController constructor. */ public function __construct() { parent::__construct(); $this->service = new WithdrawService(); } /** * 审核 * @return array */ public function confirm(){ return $this->service->edit(); } }