dataLists(); } /** * @notes 提现申请 * @return \think\response\Json * @author cjhao * @date 2024/9/26 15:13 */ public function withdrawalApply() { $params = (new WithdrawalApplyValidate())->post()->goCheck('',['coach_id'=>$this->coachId]); $result = (new WithdrawLogic())->withdrawalApply($params); if(true === $result){ return $this->success('申请成功'); } return $this->fail($result); } /** * @notes 提现记录 * @return \think\response\Json * @author cjhao * @date 2024/9/27 01:34 */ public function withdrawalLog() { return $this->dataLists(new WithdrawalLogLists()); } }