fix 列表字段判断bug
This commit is contained in:
parent
e26c1225d0
commit
afb65fae79
@ -592,7 +592,7 @@ namespace ZR.CodeGenerator
|
|||||||
genTableColumn.IsEdit = true;
|
genTableColumn.IsEdit = true;
|
||||||
}
|
}
|
||||||
//列表字段
|
//列表字段
|
||||||
if (GenConstants.COLUMNNAME_NOT_LIST.Any(f => column.DbColumnName.Contains(f) && !column.IsPrimarykey))
|
if (!GenConstants.COLUMNNAME_NOT_LIST.Any(f => column.DbColumnName.Contains(f) && !column.IsPrimarykey))
|
||||||
{
|
{
|
||||||
genTableColumn.IsList = true;
|
genTableColumn.IsList = true;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user