mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
8 lines
190 B
Go
8 lines
190 B
Go
package model
|
|
|
|
type Base_config struct {
|
|
Id int `gorm:"primary_key" json:" - "` //
|
|
Name string `json:"name"` //
|
|
Value string `json:"value"` //
|
|
}
|