|
|
@@ -4,6 +4,7 @@ type Admin struct { |
|
|
|
AdmId int `json:"adm_id" xorm:"not null comment('管理员id') INT(11)"` |
|
|
|
Username string `json:"username" xorm:"not null default '' comment('用户名') VARCHAR(255)"` |
|
|
|
Password string `json:"password" xorm:"not null default '' comment('密码') VARCHAR(255)"` |
|
|
|
ShowTime string `json:"show_time" xorm:"not null default '' comment('') VARCHAR(255)"` |
|
|
|
State int `json:"state" xorm:"not null default 1 comment('状态(1:正常 2:冻结)') TINYINT(1)"` |
|
|
|
IsSuperAdministrator int `json:"is_super_administrator" xorm:"not null default 0 comment('是否为超级管理员(0:否 1:是)') TINYINT(1)"` |
|
|
|
IsObserverAdministrator int `json:"is_observer_administrator" xorm:"not null default 0 comment('是否为观察者管理员(0:否 1:是)') TINYINT(1)"` |
|
|
|