wuxw
2022-07-19 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54
service-user/src/main/java/com/java110/user/dao/impl/OwnerV1ServiceDaoImpl.java
@@ -104,5 +104,17 @@
        return Integer.parseInt(businessOwnerInfos.get(0).get("count").toString());
    }
    @Override
    public int queryOwnersBindCount(Map info) {
        logger.debug("查询 queryOwnersBindCount 入参 info : {}",info);
        List<Map> businessOwnerInfos = sqlSessionTemplate.selectList("ownerV1ServiceDaoImpl.queryOwnersBindCount", info);
        if (businessOwnerInfos.size() < 1) {
            return 0;
        }
        return Integer.parseInt(businessOwnerInfos.get(0).get("count").toString());
    }
}