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.
12 lines
339 B
12 lines
339 B
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BotFile struct {
|
|
CreateTime time.Time `xorm:"not null DATETIME"`
|
|
Id int `xorm:"not null pk autoincr INT"`
|
|
Path string `xorm:"not null default '' comment('路径') VARCHAR(255)"`
|
|
Type int `xorm:"not null default 1 comment('资源类型 1 图片') SMALLINT"`
|
|
}
|
|
|