List<YzBoxesEntity> bTmp = page.getRecords();//目标类集合
List<Integer> ids = null;//待插入的集合
ids = bTmp.stream().map(YzBoxesEntity::getId).collect(Collectors.toList());//将YzBoxesEntity类的id插入到ids集合中
List<YzBoxesEntity> bTmp = page.getRecords();//目标类集合
List<Integer> ids = null;//待插入的集合
ids = bTmp.stream().map(YzBoxesEntity::getId).collect(Collectors.toList());//将YzBoxesEntity类的id插入到ids集合中