houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
提交 | 用户 | 时间
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 }