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

12 lines
258 B
Go

package models
import "time"
type Colour struct {
ID uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"not null" json:"name"`
Code string `json:"code"` // contoh: HEX (#000000) atau RGB
CreatedAt time.Time
UpdatedAt time.Time
}