You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
294 B
9 lines
294 B
2 months ago
|
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"`
|
||
|
}
|