Ejemplo n.º 1
0
  public int getSupplySearchCount(String searchType, String searchValue) {

    HashMap<String, Object> params = new HashMap<String, Object>();
    params.put("searchtype", searchType);
    params.put("searchvalue", searchValue);

    int count = supplyMapper.getSupplySearchCount(params);

    return count;
  }