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.
20 lines
284 B
20 lines
284 B
package models
|
|
|
|
import "github.com/beego/beego/v2/client/orm"
|
|
|
|
type Picture struct {
|
|
Id int64
|
|
DeleteUrl string
|
|
Filename string
|
|
Height string
|
|
Size string
|
|
Url string
|
|
Username string
|
|
Width string
|
|
Md5code string
|
|
BaseModel
|
|
}
|
|
|
|
func init() {
|
|
orm.RegisterModel(new(Picture))
|
|
}
|
|
|