String[] idsArry = enterprise.getProdSubTypeId().split(",");
List<Integer> ids =Arrays.stream(idsArry)
.map(s->Integer.parseInt(s.trim()))
.collect(Collectors.toList());
String[] idsArry = enterprise.getProdSubTypeId().split(",");
List<Integer> ids =Arrays.stream(idsArry)
.map(s->Integer.parseInt(s.trim()))
.collect(Collectors.toList());