Commit 70137274 by guojuxing

会员ID查询关联小程序调整:过滤没有值的

parent a2404859
......@@ -132,7 +132,7 @@ public class LinkController {
if (CollectionUtils.isNotEmpty(dtoList)) {
return RestResponse.success(dtoList
.stream()
.filter(e -> e.getStatusFlag() != null && (e.getStatusFlag() == 3 || e.getStatusFlag() == 5))
.filter(e -> StringUtils.isNotBlank(e.getAppId()) || StringUtils.isNotBlank(e.getAppletConfigName()))
.map(e -> new AppletsConfigSimpleOutputVO().setAppId(e.getAppId()).setName(e.getAppletConfigName()))
.collect(Collectors.toList()));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment