修改字典查询

Uat_Study
hang 2022-05-31 14:01:37 +08:00
parent e033291dee
commit 40cbed5946
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ namespace IRaCIS.Application.Services
.WhereIf(basicDicQuery.ConfigTypeId != null, t => t.ConfigTypeId == basicDicQuery.ConfigTypeId!)
.WhereIf(basicDicQuery.DataTypeEnum != null, t => t.DataTypeEnum == basicDicQuery.DataTypeEnum)
.WhereIf(basicDicQuery.DataTypeEnum == null, t => t.DataTypeEnum != DicDataTypeEnum.Config)
.ProjectTo<BasicDicView>(_mapper.ConfigurationProvider);