13 lines
779 B
Go
13 lines
779 B
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package entity
|
||
|
||
// StoreDesktopSettings is the golang structure for table store_desktop_settings.
|
||
type StoreDesktopSettings struct {
|
||
StoreId int64 `json:"storeId" orm:"store_id" description:""` //
|
||
TopComponentVisible int `json:"topComponentVisible" orm:"top_component_visible" description:"1显示,2 隐藏"` // 1显示,2 隐藏
|
||
RightComponentVisible int `json:"rightComponentVisible" orm:"right_component_visible" description:"1显示,2 隐藏"` // 1显示,2 隐藏
|
||
}
|