[#44] 매장 기능 도입 #45

Merged
pricelees merged 116 commits from feat/#44 into main 2025-09-20 03:15:06 +00:00
Showing only changes of commit 5f546f87da - Show all commits

View File

@ -30,11 +30,3 @@ fun StoreEntity.toInfoResponse() = StoreInfoResponse(
contact = this.contact,
businessRegNum = this.businessRegNum
)
data class StoreInfoListResponse(
val stores: List<StoreInfoResponse>
)
fun List<StoreEntity>.toInfoListResponse() = StoreInfoListResponse(
stores = this.map { it.toInfoResponse() }
)