wuxw
2019-04-23 b933bf8cfb7e0b3d231e7bc721b749fae54e911a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.java110.user.smo;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.common.exception.SMOException;
import com.java110.core.context.BusinessServiceDataFlow;
import com.java110.entity.user.Cust;
import org.springframework.http.ResponseEntity;
 
import java.util.Map;
 
/**
 *
 * 用户信息管理,服务
 * Created by wuxw on 2017/4/5.
 */
public interface IUserServiceSMO {
 
 
 
    public JSONObject service(BusinessServiceDataFlow businessServiceDataFlow) throws SMOException;
 
 
}