コード例 #1
0
 public Result[] get(String tableName, List<Get> paramList) {
   try {
     return hzTemplate.get(tableName, paramList);
   } catch (Exception ex) {
     throw new HzBaoException(ex);
   }
 }
コード例 #2
0
 public Result get(String tableName, Get paramGet) {
   try {
     return hzTemplate.get(tableName, paramGet);
   } catch (Exception ex) {
     throw new HzBaoException(ex);
   }
 }