getting started

This commit is contained in:
androidlover5842
2026-01-24 14:42:07 +05:30
commit a5a6aa4999
29 changed files with 1133 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.android.trisolarisserver.controller
import com.android.trisolarisserver.component.PropertyAccess
import org.springframework.stereotype.Component
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import java.util.UUID
class Rooms {
// private val propertyAccess: PropertyAccess;
// @GetMapping("/properties/{propertyId}/rooms/free")
// fun freeRooms(@PathVariable propertyId: UUID, principal: MyPrincipal): List<RoomDto> {
// propertyAccess.requireMember(propertyId, principal.userId)
// return roomService.freeRooms(propertyId)
// }
}