You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
413 B
12 lines
413 B
package models
|
|
|
|
type TManSystem struct {
|
|
Id string `xorm:"not null pk VARCHAR(50)"`
|
|
SystemName string `xorm:"not null VARCHAR(50)"`
|
|
SystemUrl string `xorm:"not null VARCHAR(50)"`
|
|
Enabled string `xorm:"default 'NULL' VARCHAR(50)"`
|
|
Memo string `xorm:"default 'NULL' TEXT"`
|
|
SystemTheme string `xorm:"default 'NULL' VARCHAR(50)"`
|
|
Sso string `xorm:"default 'NULL' VARCHAR(50)"`
|
|
}
|