refactor🎨 添加默认字段排序

This commit is contained in:
wenjianzhang
2021-05-14 19:32:53 +08:00
parent b82c3d9f99
commit 20e7f79f4f
2 changed files with 8 additions and 3 deletions
+6 -1
View File
@@ -17,6 +17,11 @@ type SysApiSearch struct {
Path string `form:"path" search:"type:exact;column:path;table:sys_api" comment:"地址"`
Action string `form:"action" search:"type:exact;column:action;table:sys_api" comment:"类型"`
ParentId string `form:"parentId" search:"type:exact;column:parent_id;table:sys_api" comment:"按钮id"`
SysApiOrder
}
type SysApiOrder struct {
HandleOrder string `search:"type:order;column:handle;table:sys_api" form:"handle_order"`
}
func (m *SysApiSearch) GetNeedSearch() interface{} {
@@ -123,4 +128,4 @@ func (s *SysApiById) Generate() dto.Control {
func (s *SysApiById) GenerateM() (common.ActiveRecord, error) {
return &models.SysApi{}, nil
}
}