public Result[] get(String tableName, List<Get> paramList) { try { return hzTemplate.get(tableName, paramList); } catch (Exception ex) { throw new HzBaoException(ex); } }
public Result get(String tableName, Get paramGet) { try { return hzTemplate.get(tableName, paramGet); } catch (Exception ex) { throw new HzBaoException(ex); } }