megrez/models/system.go
2024-12-29 01:02:31 +08:00

7 lines
127 B
Go

package models
type System struct {
Key string `json:"key" gorm:"primary_key;unique;index"`
Value string `json:"value"`
}