wuxw
2022-07-17 ce64e667815b39efdc2f8bd52be0d43d49db8d84
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());
    }
}