18 lines
669 B
Go
18 lines
669 B
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/frame/g"
|
||
)
|
||
|
||
// 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"`
|
||
StoreId interface{} //
|
||
TopComponentVisible interface{} // 1显示,2 隐藏
|
||
RightComponentVisible interface{} // 1显示,2 隐藏
|
||
}
|