| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.java110.community.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 IUnitAttrServiceDao {
- /**
- * 保存 单元属性信息
- * @param businessUnitAttrInfo 单元属性信息 封装
- * @throws DAOException 操作数据库异常
- */
- void saveBusinessUnitAttrInfo(Map businessUnitAttrInfo) throws DAOException;
- /**
- * 查询单元属性信息(business过程)
- * 根据bId 查询单元属性信息
- * @param info bId 信息
- * @return 单元属性信息
- * @throws DAOException DAO异常
- */
- List<Map> getBusinessUnitAttrInfo(Map info) throws DAOException;
- /**
- * 保存 单元属性信息 Business数据到 Instance中
- * @param info
- * @throws DAOException DAO异常
- */
- void saveUnitAttrInfoInstance(Map info) throws DAOException;
- /**
- * 查询单元属性信息(instance过程)
- * 根据bId 查询单元属性信息
- * @param info bId 信息
- * @return 单元属性信息
- * @throws DAOException DAO异常
- */
- List<Map> getUnitAttrInfo(Map info) throws DAOException;
- /**
- * 修改单元属性信息
- * @param info 修改信息
- * @throws DAOException DAO异常
- */
- void updateUnitAttrInfoInstance(Map info) throws DAOException;
- /**
- * 查询单元属性总数
- *
- * @param info 单元属性信息
- * @return 单元属性数量
- */
- int queryUnitAttrsCount(Map info);
- }
|