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
| package com.java110.user.smo;
|
| /**
| *
| * 用户信息管理,服务
| * Created by wuxw on 2017/4/5.
| */
| public interface IUserServiceSMO {
|
| /**
| * 新建用户
| * @param userInfoJson
| * @return
| */
| public String saveUser(String userInfoJson);
|
| /**
| * 所有服务类(增删改查用户)
| * @param userInfoJson
| * @return
| */
| public String soUserService(String userInfoJson);
|
| /**
| * 客户信息处理
| * 协议:
| *{
| * boCust:[{},{}]
| * }
| * @param boCusts
| * @return
| * @throws Exception
| */
| public String soBoCust(String boCusts) throws Exception;
|
| /**
| * 客户信息属性处理
| * 协议:
| *{
| * boCustAttr:[{},{}]
| * }
| * @param boCustAttrs
| * @return
| * @throws Exception
| */
| public String soBoCustAttr(String boCustAttrs) throws Exception;
| }
|
|