TASK:新增订阅计划概念

This commit is contained in:
2025-12-11 09:44:25 +08:00
parent 22bc8750c8
commit 7f094265da
14 changed files with 1062 additions and 15 deletions

View File

@@ -2237,7 +2237,7 @@ public class PythonService {
private List<Integer> resolve(List<BigDecimal> list) {
List<Integer> integerList = Lists.newArrayList();
list.forEach(l -> {
integerList.add(new Integer(l.intValue()));
integerList.add(l.intValue());
});
return integerList;
}