package models type BotAuthGroup struct { Createtime int64 `xorm:"comment('创建时间') BIGINT"` Id int `xorm:"not null pk autoincr INT"` Name string `xorm:"default '' comment('组名') VARCHAR(100)"` Pid int `xorm:"not null default 0 comment('父组别') INT"` Rules string `xorm:"not null comment('规则ID') TEXT"` Status string `xorm:"default '' comment('状态') VARCHAR(30)"` Updatetime int64 `xorm:"comment('更新时间') BIGINT"` }