1
0
forked from baron/baron-sso
Files
baron-sso/backend/internal/domain/system_setting.go

12 lines
276 B
Go

package domain
import "time"
// SystemSetting stores small global configuration documents.
type SystemSetting struct {
Key string `gorm:"primaryKey;size:128" json:"key"`
Value JSONMap `gorm:"type:jsonb" json:"value"`
CreatedAt time.Time
UpdatedAt time.Time
}