랜드 정보 조회

This commit is contained in:
2025-03-06 11:56:53 +09:00
parent 7c103cbba1
commit 4f1a26ca96
6 changed files with 180 additions and 24 deletions

View File

@@ -20,6 +20,12 @@ import java.util.Map;
@RequestMapping("/api/v1/land")
public class LandController {
private final LandService landService;
@GetMapping("/info")
public ResponseEntity<LandResponse> getLandInfoList(
@RequestParam Map<String, String> requestParam){
return ResponseEntity.ok().body( landService.getLandInfo(requestParam));
}
@GetMapping("/auction/list")
public ResponseEntity<LandResponse> getLandAuctionList(
@RequestParam Map<String, String> requestParam){