wuxw
2019-06-01 48f36bbc7ffb262e6a6ea5b1cc01a2cd054946ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.java110.fee.dao;
 
 
import com.java110.common.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 IFeeAttrServiceDao {
 
    /**
     * 保存 费用属性信息
     * @param businessFeeAttrInfo 费用属性信息 封装
     * @throws DAOException 操作数据库异常
     */
    void saveBusinessFeeAttrInfo(Map businessFeeAttrInfo) throws DAOException;
 
 
 
    /**
     * 查询费用属性信息(business过程)
     * 根据bId 查询费用属性信息
     * @param info bId 信息
     * @return 费用属性信息
     * @throws DAOException DAO异常
     */
    List<Map> getBusinessFeeAttrInfo(Map info) throws DAOException;
 
 
 
 
    /**
     * 保存 费用属性信息 Business数据到 Instance中
     * @param info
     * @throws DAOException DAO异常
     */
    void saveFeeAttrInfoInstance(Map info) throws DAOException;
 
 
 
 
    /**
     * 查询费用属性信息(instance过程)
     * 根据bId 查询费用属性信息
     * @param info bId 信息
     * @return 费用属性信息
     * @throws DAOException DAO异常
     */
    List<Map> getFeeAttrInfo(Map info) throws DAOException;
 
 
 
    /**
     * 修改费用属性信息
     * @param info 修改信息
     * @throws DAOException DAO异常
     */
    void updateFeeAttrInfoInstance(Map info) throws DAOException;
 
 
    /**
     * 查询费用属性总数
     *
     * @param info 费用属性信息
     * @return 费用属性数量
     */
    int queryFeeAttrsCount(Map info);
 
}