shiyj
2019-06-19 a4ead537efd13961de97a2466249a62d17b8c2ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.java110.store.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.merchant.Merchant;
 
/**
 *
 * 用户信息管理,服务
 * Created by wuxw on 2017/4/5.
 */
public interface IStoreServiceSMO {
 
 
    public JSONObject service(BusinessServiceDataFlow businessServiceDataFlow) throws SMOException;
 
}