Files
warehouse-management-BE/internal/models/warehouse_model.go
Tran Anh Tuan 6a4a96e0ca Base Project
2026-05-08 14:32:24 +07:00

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"`
}