2024-07-11 16:37:26 +08:00

12 lines
137 B
Go

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