랜드 정보 조회

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

@@ -1,6 +1,7 @@
package com.caliverse.admin.domain.response;
import com.caliverse.admin.domain.entity.LandAuction;
import com.caliverse.admin.domain.entity.LandInfo;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
@@ -35,6 +36,9 @@ public class LandResponse {
@JsonProperty("building_list")
private List<Building> buildingList;
@JsonProperty("land_info_list")
private List<LandInfo> landInfoList;
private String message;
@JsonProperty("land_list")
private List<Land> landList;