feat: add room management functionality

This commit is contained in:
Tran Anh Tuan
2026-05-08 14:58:59 +07:00
parent 6a4a96e0ca
commit 459ff6b384
15 changed files with 1289 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
package requests
type CreateRoomRequest struct {
WarehouseID int64 `json:"warehouseId" binding:"required"`
Name string `json:"name" binding:"required"`
Description string `json:"description"`
}
type UpdateRoomRequest struct {
Name string `json:"name"`
Description string `json:"description"`
}