랜드 정보 조회
This commit is contained in:
@@ -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){
|
||||
|
||||
Reference in New Issue
Block a user