浏览代码

更新

master
huangjiajun 1 天前
父节点
当前提交
ce3223d3e7
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      src/model/admin.go

+ 1
- 0
src/model/admin.go 查看文件

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


正在加载...
取消
保存