Commit 513c28e1 by guojuxing

小程序状态码调整

parent 9be1a5c6
......@@ -72,8 +72,8 @@ public class DataConfigController {
List<AppletsConfigSimpleOutputDTO> list = result.getResult();
if (CollectionUtils.isNotEmpty(list)) {
return RestResponse.success(list.stream()
//2:正常 4:异常
.filter(e -> e.getStatusFlag() != null && (e.getStatusFlag() == 2 || e.getStatusFlag() == 4))
///3:正常 5:异常
.filter(e -> e.getStatusFlag() != null && (e.getStatusFlag() == 3 || e.getStatusFlag() == 5))
.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