Ejemplo n.º 1
0
 public void image() {
   List<Chart> list = chartDao.image(new HashMap());
   if (null != list && list.size() > 0) {
     System.out.println("下载记录");
     int i = 0;
     for (Chart chart : list) {
       System.out.println("Name:" + chart.getName());
       System.out.println("Total:" + chart.getTotal());
       i++;
     }
   }
 }