// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" ) // Wallpaper is the golang structure of table wallpaper for DAO operations like Where/Data. type Wallpaper struct { g.Meta `orm:"table:wallpaper, do:true"` Id any // Title any // 标题 Tags any // 标签(英文逗号分隔) Category any // 分类(自由文本) Orientation any // 朝向 0未知 1横版 2竖版 3方形 Width any // 原图宽度(px) Height any // 原图高度(px) Filesize any // 原图字节数 Mime any // 原图MIME(image/jpeg等) Path any // 原图相对路径(相对存储根) ThumbPath any // 缩略图相对路径(480px) PreviewPath any // 预览图相对路径(长边1920) Hash any // 原图MD5(秒传去重) Enabled any // 是否启用 0否 1是 Sort any // 排序,小的在前 ViewCount any // 浏览次数 DownloadCount any // 下载次数 Remark any // 备注 CreatedAt any // UpdatedAt any // DeletedAt any // }