2024-12-19 15:03:36 +08:00

11 lines
136 B
Go

package interfaces
type Enum interface {
Value() int64
Code() string
Label() string
MarshalJSON() ([]byte, error)
All() []Enum
}