潘志宝
5 天以前 4d7e3bb9a93ac0bdba9075e5efa536a165f8aae9
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.report.service.goview;
H 2
3 import com.iailab.module.report.controller.admin.goview.vo.data.GoViewDataRespVO;
4
5 /**
6  * GoView 数据 Service 接口
7  *
8  * @author iailab
9  */
10 public interface GoViewDataService {
11
12     /**
13      * 使用 SQL 查询数据
14      *
15      * @param sql SQL 语句
16      * @return 数据
17      */
18     GoViewDataRespVO getDataBySQL(String sql);
19
20 }