From ccccab310466e55c9995dddf72c4b306163460ad Mon Sep 17 00:00:00 2001 From: yangyu Date: Wed, 12 Jan 2022 17:10:52 +0800 Subject: [PATCH] fix bug --- app/other/models/tools/sys_columns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/other/models/tools/sys_columns.go b/app/other/models/tools/sys_columns.go index 34fe27c7..1acc6aba 100644 --- a/app/other/models/tools/sys_columns.go +++ b/app/other/models/tools/sys_columns.go @@ -56,7 +56,7 @@ func (e *SysColumns) GetList(tx *gorm.DB, exclude bool) ([]SysColumns, error) { table := tx.Table("sys_columns") table = table.Where("table_id = ? ", e.TableId) if exclude { - notIn := make([]string, 6) + notIn := make([]string, 0, 6) notIn = append(notIn, "id") notIn = append(notIn, "create_by") notIn = append(notIn, "update_by")