实现门店桌面设置相关配置
This commit is contained in:
@ -6,19 +6,12 @@ package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// StoreDesktopSettings is the golang structure of table store_desktop_settings for DAO operations like Where/Data.
|
||||
type StoreDesktopSettings struct {
|
||||
g.Meta `orm:"table:store_desktop_settings, do:true"`
|
||||
Id interface{} // 主键ID
|
||||
StoreId interface{} // 门店ID
|
||||
BackgroundUrl interface{} // 桌面背景图片URL
|
||||
Resolution interface{} // 分辨率,例如1920x1080
|
||||
IsTopWidgetVisible interface{} // 顶部组件是否显示:FALSE=隐藏,TRUE=显示
|
||||
IsRightWidgetVisible interface{} // 右侧组件是否显示:FALSE=隐藏,TRUE=显示
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
DeletedAt *gtime.Time // 软删除时间戳
|
||||
g.Meta `orm:"table:store_desktop_settings, do:true"`
|
||||
StoreId interface{} //
|
||||
TopComponentVisible interface{} // 1显示,2 隐藏
|
||||
RightComponentVisible interface{} // 1显示,2 隐藏
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user