BE-MiniERP/modules/inventory/models/colour.go
2025-06-23 11:27:43 +07:00

13 lines
281 B
Go

package models
import "time"
type Colour struct {
ID uint `gorm:"primaryKey" json:"id"`
Code string `json:"code"`
Name string `gorm:"not null" json:"name"`
Hex string `json:"hex"` // Hexadecimal color code
CreatedAt time.Time
UpdatedAt time.Time
}