java110
2022-06-15 4ee86eb0f4984bf3ede3196ad8c5fe95e8c5a504
service-store/src/main/java/com/java110/store/dao/IStoreServiceDao.java
old mode 100644 new mode 100755
@@ -292,4 +292,27 @@
     */
    public List<Map> getStoreUserInfo(Map info) throws DAOException;
    /**
     * 查询商户员工
     *
     * @param beanCovertMap
     * @return
     */
    List<Map> getStoreStaffs(Map beanCovertMap) throws DAOException;
    /**
     * 查询商户员工数
     *
     * @param beanCovertMap
     * @return
     */
    int getStoreStaffCount(Map beanCovertMap) throws DAOException;
    /**
     * 修改商户信息
     *
     * @param info
     * @return
     */
    int updateStore(Map info) throws DAOException;
}