13 lines
297 B
Go
13 lines
297 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Warehouse struct {
|
|
ID int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Address string `json:"address"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|