工业级运维app手机api
沈斌
2017-11-07 5c3e2337894ec186776683a2fd74988492fe49a3
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);
}