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.
21 lines
315 B
21 lines
315 B
2 years ago
|
package models
|
||
|
|
||
|
import "github.com/beego/beego/v2/client/orm"
|
||
|
|
||
|
type SysPicture 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(SysPicture))
|
||
|
}
|