字典类型新增是否系统字典字段

This commit is contained in:
不做码农
2021-12-19 19:52:59 +08:00
parent a2644859bd
commit 8f413ebbf6
6 changed files with 49 additions and 22 deletions

View File

@@ -28,6 +28,7 @@ namespace ZR.Repository.System
exp.AndIF(!string.IsNullOrEmpty(dictType.DictName), it => it.DictName.Contains(dictType.DictName));
exp.AndIF(!string.IsNullOrEmpty(dictType.Status), it => it.Status == dictType.Status);
exp.AndIF(!string.IsNullOrEmpty(dictType.DictType), it => it.DictType.Contains(dictType.DictType));
exp.AndIF(!string.IsNullOrEmpty(dictType.Type), it => it.Type.Equals(dictType.Type));
return GetPages(exp.ToExpression(), pager, f => f.DictId, OrderByType.Desc);
}