46 lines
3.3 KiB
Go
46 lines
3.3 KiB
Go
package base
|
|
|
|
import (
|
|
"git.fsdpf.net/go/contracts/res_type"
|
|
)
|
|
|
|
type DataList struct {
|
|
Uuid string `db:"uuid"`
|
|
ResourceUuid string `db:"resource_uuid"` // 所属资源UUID
|
|
Code string `db:"code"` // 列表标识
|
|
Name string `db:"name"` // 列表名称
|
|
Title string `db:"title"` // 布局标题
|
|
PrimaryKey string `db:"primaryKey"` // 主键标识
|
|
Layout string `db:"layout"` // 主键标识
|
|
IsOperationColumn bool `db:"isOperationColumn"` // 是否显示操作栏,1是,0否
|
|
OperationColumnWidth int `db:"operationColumnWidth"` // 操作列宽度
|
|
IsPaginate bool `db:"isPaginate"` // 是否分页
|
|
IsTreeData bool `db:"isTreeData"` // 是否使用树形列表
|
|
TreeDataConfig res_type.ResFieldByMap `db:"treeDataConfig"` // 树形列表配置
|
|
IsExpandedRow string `db:"isExpandedRow"` // 列表明细控件
|
|
ExpandedRowConfig res_type.ResFieldByMap `db:"expandedRowConfig"` // 列表明细控件配置
|
|
IsTreeSider bool `db:"isTreeSider"` // 是否打开侧边栏侧边栏
|
|
TreeSiderConfig res_type.ResFieldByMap `db:"treeSiderConfig"` // 侧边栏设置
|
|
IsDynamicRefresh bool `db:"isDynamicRefresh"` // 是否启用动态刷新
|
|
PageSize int `db:"pagesize"` // 分页大小
|
|
IsAuxiliaryPanel bool `db:"isAuxiliaryPanel"` // 是否使用附属面板
|
|
AuxiliaryPanelConfig res_type.ResFieldByMap `db:"auxiliaryPanelConfig"` // 附属面板配置
|
|
SortConfig res_type.ResFieldByAnys `db:"sortConfig"` // 排序设置
|
|
FieldsSort res_type.ResFieldByAnys `db:"fieldsSort"` // 字段排序
|
|
GroupConfig res_type.ResFieldByAnys `db:"groupConfig"` // 分组设置
|
|
XlsxFieldsSort res_type.ResFieldByAnys `db:"xlsxFieldsSort"` // 字段排序
|
|
XlsxImportFieldsSort res_type.ResFieldByAnys `db:"xlsxImportFieldsSort"` // 字段排序
|
|
XlsxImportConfig res_type.ResFieldByMap `db:"xlsxImportConfig"` // 导入设置
|
|
TabsSort res_type.ResFieldByAnys `db:"tabsSort"` // 标签排序
|
|
OperationsSort res_type.ResFieldByAnys `db:"operationsSort"` // 按钮排序
|
|
FsmConfig res_type.ResFieldByAnys `db:"fsmConfig"` // FSM设置
|
|
ApprovalConfig res_type.ResFieldByAnys `db:"approvalConfig"` // 审批设置
|
|
UniqueImportFields res_type.ResFieldByAnys `db:"uniqueImportFields"` // 导入字段唯一效验
|
|
Roles res_type.ResFieldByAnys `db:"roles"` // 列表权限
|
|
IsAuthDB int `db:"is_auth_db"` // 启用权限过滤
|
|
UpdatedAt string `db:"updated_at"`
|
|
CreatedAt string `db:"created_at"`
|
|
}
|
|
|
|
type GetDataList func(code string) (DataList, bool)
|