|
|
@ -102,11 +102,11 @@ public class OtherZllService : ApplicationService, IOtherZllService |
|
|
|
|
|
|
|
if (_dtoList != null && _dtoList.Count() > 0) |
|
|
|
{ |
|
|
|
//根据配置文件过滤ERNAM
|
|
|
|
List<string> ernamFilters = _otherZllConfigOptions.ErnamFilters; |
|
|
|
if (ernamFilters != null && ernamFilters.Count > 0) |
|
|
|
if (_otherZllConfigOptions.IsEnableErnamFilter == true) |
|
|
|
{ |
|
|
|
_dtoList = _dtoList.FindAll(e => !ernamFilters.Contains(e.ERNAM)); |
|
|
|
//根据配置文件过滤ERNAM
|
|
|
|
List<string> ernamFilters = _otherZllConfigOptions.ErnamFilters; |
|
|
|
_dtoList = _dtoList.FindAll(e => ernamFilters.Contains(e.ERNAM)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|