| | |
| | | package com.java110.store.dao; |
| | | |
| | | |
| | | import com.java110.common.exception.DAOException; |
| | | import com.java110.utils.exception.DAOException; |
| | | import com.java110.entity.merchant.BoMerchant; |
| | | import com.java110.entity.merchant.BoMerchantAttr; |
| | | import com.java110.entity.merchant.Merchant; |
| | | import com.java110.entity.merchant.MerchantAttr; |
| | | |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | * @param businessStoreInfo 商户信息 封装 |
| | | * @throws DAOException 操作数据库异常 |
| | | */ |
| | | public void saveBusinessStoreInfo(Map businessStoreInfo) throws DAOException; |
| | | void saveBusinessStoreInfo(Map businessStoreInfo) throws DAOException; |
| | | |
| | | |
| | | |
| | |
| | | * @return 商户信息 |
| | | * @throws DAOException |
| | | */ |
| | | public Map getBusinessStoreInfo(Map info) throws DAOException; |
| | | Map getBusinessStoreInfo(Map info) throws DAOException; |
| | | |
| | | |
| | | |
| | |
| | | * @param info |
| | | * @throws DAOException |
| | | */ |
| | | public void saveStoreInfoInstance(Map info) throws DAOException; |
| | | void saveStoreInfoInstance(Map info) throws DAOException; |
| | | |
| | | |
| | | |
| | |
| | | * @return 商户信息 |
| | | * @throws DAOException |
| | | */ |
| | | public Map getStoreInfo(Map info) throws DAOException; |
| | | Map getStoreInfo(Map info) throws DAOException; |
| | | |
| | | |
| | | |
| | |
| | | * @param info 修改信息 |
| | | * @throws DAOException |
| | | */ |
| | | public void updateStoreInfoInstance(Map info) throws DAOException; |
| | | void updateStoreInfoInstance(Map info) throws DAOException; |
| | | |
| | | /** |
| | | * 查询商户总数 |
| | | * |
| | | * @param info 商户信息 |
| | | * @return 商户数量 |
| | | */ |
| | | int queryStoresCount(Map info); |
| | | |
| | | } |