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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
package com.java110.user.dao;
 
import com.java110.utils.exception.DAOException;
import com.java110.entity.user.BoCust;
import com.java110.entity.user.BoCustAttr;
import com.java110.entity.user.Cust;
import com.java110.entity.user.CustAttr;
 
import java.util.List;
import java.util.Map;
 
/**
 * 用户组件内部之间使用,没有给外围系统提供服务能力
 * 用户服务接口类,要求全部以字符串传输,方便微服务化
 * 新建客户,修改客户,删除客户,查询客户等功能
 * <p>
 * Created by wuxw on 2016/12/27.
 */
public interface IUserServiceDao {
 
    /**
     * 保存用户基本信息(过程表)
     *
     * @param boCust 用户基本信息
     * @return
     */
    int saveDataToBoCust(BoCust boCust) throws RuntimeException;
 
    /**
     * 保存用户属性(过程表)
     *
     * @param boCustAttr 用户属性
     * @return
     * @throws RuntimeException
     */
    int saveDataToBoCustAttr(BoCustAttr boCustAttr) throws RuntimeException;
 
    /**
     * 同事保存用户基本信息和属性(过程表)
     *
     * @param boCustInfo 用户信息
     * @return
     * @throws RuntimeException
     */
    String saveDataToBoCustAndBoCustAttr(String boCustInfo) throws RuntimeException;
 
    /**
     * 保存用户基本信息
     *
     * @param cust
     * @return
     * @throws RuntimeException
     */
    int saveDataToCust(Cust cust) throws RuntimeException;
 
    /**
     * 保存用户属性
     *
     * @param custAttr
     * @return
     * @throws RuntimeException
     */
    int saveDataToCustAttr(CustAttr custAttr) throws RuntimeException;
 
    /**
     * 删除用户基本信息(实例数据)
     *
     * @param cust
     * @return
     * @throws RuntimeException
     */
    int deleteDataToCust(Cust cust) throws RuntimeException;
 
    /**
     * 删除用户属性(实例数据)
     *
     * @param custAttr
     * @return
     * @throws RuntimeException
     */
    int deleteDataToCustAttr(CustAttr custAttr) throws RuntimeException;
 
    /**
     * 同事保存用户基本信息和属性
     *
     * @param custInfo
     * @return
     * @throws RuntimeException
     */
    String saveDataToCustAndCustAttr(String custInfo) throws RuntimeException;
 
 
    /**
     * 更新用户基本信息
     *
     * @param cust
     * @return
     * @throws RuntimeException
     */
    String updateDataToCust(String cust) throws RuntimeException;
 
    /**
     * 更新用户属性
     *
     * @param custAttr
     * @return
     * @throws RuntimeException
     */
    String updateDataToCustAttr(String custAttr) throws RuntimeException;
 
    /**
     * 同事更新用户基本信息和属性
     *
     * @param custInfo
     * @return
     * @throws RuntimeException
     */
    String updateDataToCustAndCustAttr(String custInfo) throws RuntimeException;
 
 
    /**
     * 查询用户基本信息(一般没用,就算有用)
     *
     * @param cust
     * @return
     * @throws RuntimeException
     */
    Cust queryDataToCust(Cust cust) throws RuntimeException;
 
 
    /**
     * 查询用户属性
     *
     * @param custAttr
     * @return
     * @throws RuntimeException
     */
    List<CustAttr> queryDataToCustAttr(CustAttr custAttr) throws RuntimeException;
 
    /**
     * 查询保存用户基本信息和属性
     *
     * @param custInfo
     * @return
     * @throws RuntimeException
     */
    String queryDataToCustAndCustAttr(String custInfo) throws RuntimeException;
 
    /**
     * 查询 客户基本信息(过程表bo_cust)
     *
     * @param boCust
     * @return
     * @throws Exception
     */
    List<BoCust> queryBoCust(BoCust boCust) throws Exception;
 
    /**
     * 查询 客户属性信息(过程表 bo_cust_attr)
     *
     * @param boCustAttr
     * @return
     * @throws Exception
     */
    List<BoCustAttr> queryBoCustAttr(BoCustAttr boCustAttr) throws Exception;
 
 
    /**
     * 保存用户信息
     *
     * @param userInfo
     * @throws DAOException
     */
    void saveBusinessUserInfo(Map userInfo) throws DAOException;
 
    /**
     * 保存用户属性
     *
     * @param userAttr
     * @throws DAOException
     */
    void saveBusinessUserAttr(Map userAttr) throws DAOException;
 
 
    void saveUserInfoInstance(Map businessUser);
 
    void saveUserAttrInstance(Map attrInstance);
 
    void updateUserInfoInstance(Map businessUser);
 
    void updateUserAttrInstance(Map attrInstance);
 
    /**
     * 查询用户信息
     *
     * @param info
     * @return
     * @throws DAOException
     */
    Map queryBusinessUserInfo(Map info) throws DAOException;
 
    /**
     * 查询用户信息
     *
     * @param info
     * @return
     * @throws DAOException
     */
    List<Map> queryBusinessUserInfoAttrs(Map info) throws DAOException;
 
    /**
     * 查询用户信息
     *
     * @param info
     * @return
     * @throws DAOException
     */
    Map queryUserInfo(Map info) throws DAOException;
 
 
    /**
     * 查询用户信息
     *
     * @param info 信息
     * @return
     * @throws DAOException
     */
    List<Map> queryUsersInfo(Map info) throws DAOException;
 
    /**
     * 查询用户信息
     *
     * @param info
     * @return
     * @throws DAOException
     */
    List<Map> queryUserInfoAttrs(Map info) throws DAOException;
 
 
    /**
     * 保存用户地址信息
     * Business 过程
     *
     * @param userAddress 用户地址信息
     * @throws DAOException
     */
    public void saveBusinessUserAddress(Map userAddress) throws DAOException;
 
 
    /**
     * 查询用户地址信息
     * business 过程
     *
     * @param info b_id
     * @return 查询到的用户地址信息
     * @throws DAOException
     */
    public Map queryBusinessUserAddress(Map info) throws DAOException;
 
    /**
     * 保存Business 数据到 Instance
     *
     * @param businessUserAddress 从business 中查出的数据
     * @throws DAOException 数据处理异常
     */
    public void saveUserAddressInstance(Map businessUserAddress) throws DAOException;
 
 
    /**
     * 作废用户信息数据
     *
     * @param businessUserAddress 用户地址信息 b_id
     * @throws DAOException 数据处理异常
     */
    public void updateUserAddressInstance(Map businessUserAddress) throws DAOException;
 
 
    /**
     * 保存用户打标信息
     * Business 过程
     *
     * @param userTag 用户打标信息
     * @throws DAOException
     */
    public void saveBusinessUserTag(Map userTag) throws DAOException;
 
 
    /**
     * 查询用户打标信息
     * business 过程
     *
     * @param info b_id
     * @return 查询到的用户打标信息
     * @throws DAOException
     */
    public Map queryBusinessUserTag(Map info) throws DAOException;
 
    /**
     * 保存Business 数据到 Instance
     *
     * @param businessUserTag 从business 中查出的数据
     * @throws DAOException 数据处理异常
     */
    public void saveUserTagInstance(Map businessUserTag) throws DAOException;
 
 
    /**
     * 作废用户打标数据
     *
     * @param businessUserTag 用户地址信息 b_id
     * @throws DAOException 数据处理异常
     */
    public void updateUserTagInstance(Map businessUserTag) throws DAOException;
 
 
    /**
     * 保存用户证件信息
     * Business 过程
     *
     * @param userCredentials 用户证件信息
     * @throws DAOException
     */
    public void saveBusinessUserCredentials(Map userCredentials) throws DAOException;
 
 
    /**
     * 查询用户证件信息
     * business 过程
     *
     * @param info b_id
     * @return 查询到的用户打标信息
     * @throws DAOException
     */
    public Map queryBusinessUserCredentials(Map info) throws DAOException;
 
    /**
     * 保存Business 数据到 Instance
     *
     * @param businessUserCredentials 从business 中查出的数据
     * @throws DAOException 数据处理异常
     */
    public void saveUserCredentialsInstance(Map businessUserCredentials) throws DAOException;
 
 
    /**
     * 作废用户证件数据
     *
     * @param businessUserCredentials 用户地址信息 b_id
     * @throws DAOException 数据处理异常
     */
    public void updateUserCredentialsInstance(Map businessUserCredentials) throws DAOException;
}