package models type BotUserLevel struct { GrandpaId int `xorm:"not null comment('爷级ID') index INT"` ParentId int `xorm:"not null comment('父级ID') index INT"` TopId int `xorm:"not null comment('祖级ID') index INT"` UserId int `xorm:"not null pk comment('用户ID') INT"` }