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.
11 lines
489 B
11 lines
489 B
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"`
|
|
}
|
|
|