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

12 lines
309 B
Go

package models
import "time"
type Size struct {
ID uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null" json:"name"` // contoh: S, M, L, XL
Description string `json:"description"` // opsional, seperti "Small", "Large"
CreatedAt time.Time
UpdatedAt time.Time
}