BE-MiniERP/modules/inventory/models/collection.go
2025-06-22 23:23:26 +07:00

11 lines
196 B
Go

package models
import "time"
type Collection struct {
ID uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null" json:"name"`
CreatedAt time.Time
UpdatedAt time.Time
}