feat: add container management functionality

This commit is contained in:
Tran Anh Tuan
2026-05-11 09:42:19 +07:00
parent 9f27436d5d
commit 7c9a0d4670
15 changed files with 1654 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package models
import (
"encoding/json"
"time"
)
type Container struct {
ID int64 `json:"id"`
ShelfID int64 `json:"shelfId"`
Name string `json:"name"`
ContainerType string `json:"containerType"`
Description string `json:"description"`
MaxCapacity int32 `json:"maxCapacity"`
Metadata json.RawMessage `json:"metadata"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}