| 1234567891011121314151617 |
- package mini_page_component
- import (
- "git.sxidc.com/go-framework/baize/framework/core/application"
- )
- type Info struct {
- application.InfoIDField
- PageID string `json:"pageId" sqlresult:"column:page_id;"`
- ComponentTypeID string `json:"componentTypeId" sqlresult:"column:component_type_id;"`
- TypeName string `json:"typeName" sqlresult:"column:type_name;"`
- ComponentConfig string `json:"componentConfig" sqlresult:"column:component_config;"`
- SortOrder int `json:"sortOrder" sqlresult:"column:sort_order;"`
- IsEnabled string `json:"isEnabled" sqlresult:"column:is_enabled;"`
- application.InfoUserIDFields
- application.InfoTimeFields
- }
|