public void testQueryBroadcastCompareByCode() {
   try {
     System.out.println(dao.queryBroadcastCompareByCode("1002"));
   } catch (FrameworkDAOException e) {
     e.printStackTrace();
   }
 }
 public void testFindIndexPicById() {
   try {
     System.out.println(jdao.findIndexPicById(26, 4, "mtipicType01"));
     System.out.println(jdao.findIndexPicById(26, 20, "mtipicType01"));
   } catch (FrameworkDAOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
 public void testFindPictureListPage() {
   try {
     Object ob = jdao.findPictureListPage(26, "mtipicType01", 2, 1);
     System.out.println(ob);
   } catch (FrameworkDAOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
 public void testSelectMaxPictureByRid() {
   try {
     List list = jdao.selectMaxPictureByRid(26, "mtipicType01");
     System.out.println(list);
   } catch (FrameworkDAOException e) {
     // TODO Auto-generated catch block
     e.printStackTrace();
   }
 }
  public void testFindPictureById() {
    try {
      System.out.println(jdao.findPictureById(17));
      System.out.println(jdao.findPictureById(1127));

    } catch (FrameworkDAOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
  }