fix代码生成问题

This commit is contained in:
不做码农
2022-05-09 18:03:33 +08:00
parent 647e725ff9
commit d6cd248e10
2 changed files with 2 additions and 2 deletions

View File

@@ -460,7 +460,7 @@ namespace ZR.CodeGenerator
IsInsert = !column.IsIdentity || GenConstants.inputDtoNoField.Any(f => f.Contains(column.DbColumnName, StringComparison.OrdinalIgnoreCase)),//非自增字段都需要插入
IsEdit = true,
IsQuery = false,
HtmlType = GenConstants.HTML_INPUT
HtmlType = GenConstants.HTML_INPUT,
};
if (GenConstants.imageFiled.Any(f => column.DbColumnName.ToLower().Contains(f.ToLower())))