14 lines
339 B
Go
14 lines
339 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Shelve struct {
|
|
ID int64 `json:"id"`
|
|
CabinetID int64 `json:"cabinetId"`
|
|
Name string `json:"name"`
|
|
LevelIndex int32 `json:"levelIndex"`
|
|
Description string `json:"description"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|