17 lines
301 B
Go
17 lines
301 B
Go
|
package entity
|
||
|
|
||
|
type Config struct {
|
||
|
Id string `gorm:"primaryKey`
|
||
|
Title string
|
||
|
Value string
|
||
|
Defaultvalue string
|
||
|
Roworder int
|
||
|
Visible bool
|
||
|
Changeable bool
|
||
|
Required bool
|
||
|
Typefield string
|
||
|
Grouped string
|
||
|
Category string
|
||
|
Help string
|
||
|
}
|