Browse Source

更新

master
huangjiajun 1 day ago
parent
commit
ce3223d3e7
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/model/admin.go

+ 1
- 0
src/model/admin.go View File

@@ -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)"`


Loading…
Cancel
Save