package com.java110.job.dao;
|
|
|
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;
|
|
/**
|
* 业务数据同步组件内部之间使用,没有给外围系统提供服务能力
|
* 业务数据同步服务接口类,要求全部以字符串传输,方便微服务化
|
* 新建客户,修改客户,删除客户,查询客户等功能
|
*
|
* Created by wuxw on 2016/12/27.
|
*/
|
public interface IBusinessDatabusServiceDao {
|
|
|
/**
|
* 保存 业务数据同步信息
|
* @param info
|
* @throws DAOException DAO异常
|
*/
|
void saveBusinessDatabusInfo(Map info) throws DAOException;
|
|
|
|
|
/**
|
* 查询业务数据同步信息(instance过程)
|
* 根据bId 查询业务数据同步信息
|
* @param info bId 信息
|
* @return 业务数据同步信息
|
* @throws DAOException DAO异常
|
*/
|
List<Map> getBusinessDatabusInfo(Map info) throws DAOException;
|
|
|
|
/**
|
* 修改业务数据同步信息
|
* @param info 修改信息
|
* @throws DAOException DAO异常
|
*/
|
void updateBusinessDatabusInfo(Map info) throws DAOException;
|
|
|
/**
|
* 查询业务数据同步总数
|
*
|
* @param info 业务数据同步信息
|
* @return 业务数据同步数量
|
*/
|
int queryBusinessDatabussCount(Map info);
|
|
}
|