增加上传接口

This commit is contained in:
2021-07-04 04:03:29 +08:00
parent efb6cb980e
commit 05c8159601
3 changed files with 48 additions and 4 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ type ColumnShow struct {
Info bool
Must bool
Type string //空字符串表示
Strict bool
Strict bool //name严格匹配必须是这个词才行
}
var ColumnNameType = []ColumnShow{
@@ -86,6 +86,6 @@ var ColumnNameType = []ColumnShow{
{"file", false, true, true, false, "file", false},
{"age", false, true, true, false, "", false},
{"email", false, true, true, false, "", false},
{"time", true, false, false, false, "", false},
{"level", false, false, true, false, "", false},
}