wuxw
2020-02-17 9f9836688fc39f714fb1e77322672115e98150ee
StoreService/src/main/java/com/java110/store/dao/impl/StoreServiceDaoImpl.java
@@ -508,4 +508,12 @@
        return propertyUsers;
    }
    public int getStoreCount(Map info) throws DAOException{
        List<Map> stores = sqlSessionTemplate.selectList("storeServiceDaoImpl.getStoreCount", info);
        if (stores.size() < 1) {
            return 0;
        }
        return Integer.parseInt(stores.get(0).get("count").toString());
    }
}