修复打印模板列表不显示

This commit is contained in:
钱涛 2024-11-11 18:03:31 +08:00
parent 99274b95ec
commit 4601d5ec81
1 changed files with 2 additions and 2 deletions

View File

@ -209,8 +209,8 @@ public class SettingServiceImpl extends Service implements SettingService {
pos = pos.stream() pos = pos.stream()
.filter(po -> { .filter(po -> {
if (po.getSharedType() == 1) { if (po.getSharedType() == 1) {
List<Long> limitIds = po.getLimitIds(); List limitIds = po.getLimitIds();
List collect = new ArrayList<>(); List<String> collect = new ArrayList<>();
for (int i = 0; i < limitIds.size(); i++) { for (int i = 0; i < limitIds.size(); i++) {
collect.add(limitIds.get(i).toString()); collect.add(limitIds.get(i).toString());
} }