Files
warehouse-management-BE/internal/models/room_model.go
2026-05-08 14:58:59 +07:00

13 lines
296 B
Go

package models
import "time"
type Room struct {
ID int64 `json:"id"`
WarehouseID int64 `json:"warehouseId"`
Name string `json:"name"`
Description string `json:"description"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}