로또 API 서버 구현 2탄입니다! 나머지 기능 모두 구현입니다! 3. 특정 사용자의 모든 로또 정보 조회 *LottoController@GetMapping("/members/{memberId}/lottos")public ResponseEntity showLottos(@PathVariable Long memberId) { List lottoResponse = lottoService.getLottos(memberId).stream() .map(LottoMapper::toLottoResponse) .toList(); LottoResponses lottoResponses = LottoMapper.toLottoResponses(lottoResponse); ..