where([ 'order_type' => 1, 'user_id' => $this->userId, ]) ->order('id', 'desc') ->select() ->toArray(); return $lists; } /** * @notes 获取数量 * @return int */ public function count(): int { return RechargeOrder::where([ 'order_type' => 1, 'user_id' => $this->userId, ]) ->count(); } }