mirror of
https://github.com/XShengTech/MEGREZ.git
synced 2026-01-14 00:57:17 +08:00
7 lines
127 B
Go
7 lines
127 B
Go
package models
|
|
|
|
type System struct {
|
|
Key string `json:"key" gorm:"primary_key;unique;index"`
|
|
Value string `json:"value"`
|
|
}
|