// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // WallpaperSource is the golang structure for table wallpaper_source. type WallpaperSource struct { Id uint64 `json:"id" orm:"id" description:""` // Code string `json:"code" orm:"code" description:"平台编码 bing/picsum/unsplash/pexels/wallhaven"` // 平台编码 bing/picsum/unsplash/pexels/wallhaven Name string `json:"name" orm:"name" description:"平台显示名"` // 平台显示名 Enabled int `json:"enabled" orm:"enabled" description:"是否启用 0否 1是"` // 是否启用 0否 1是 Sort int `json:"sort" orm:"sort" description:"排序,小的在前"` // 排序,小的在前 Config string `json:"config" orm:"config" description:"平台配置JSON(apiKey/defaultQuery等)"` // 平台配置JSON(apiKey/defaultQuery等) Remark string `json:"remark" orm:"remark" description:"备注"` // 备注 CreatedAt string `json:"createdAt" orm:"created_at" description:""` // UpdatedAt string `json:"updatedAt" orm:"updated_at" description:""` // }