wuxw7
2018-04-20 274d91f5c1d85c6ae20a4ba932d6e245f1eb7f52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.java110.service.smo;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.common.exception.BusinessException;
import com.java110.entity.service.DataQuery;
 
/**
 * 公用查询处理
 * Created by wuxw on 2018/4/19.
 */
public interface IQueryServiceSMO {
 
    /**
     * c_common_sql
     * 公共查询服务
     * @return
     * @throws BusinessException
     */
    public void commonQueryService(DataQuery dataQuery) throws BusinessException;
}