工业级运维app手机api
沈斌
2017-10-20 10bc57b95993e571feb4e8f02e99eeca55898107
1
2
3
4
5
6
7
8
9
10
11
12
package com.moral.monitor.dao;
 
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Repository("SqlDao")
public interface SqlDao {
    public List<Map> executeSql(@Param("sql") String sql);
}