sinake
19 小时以前 363592addf95355738ec801b6438a1ff2db5e05c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ruoyi.quartz.mapper;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.apache.ibatis.annotations.Update;
 
import java.util.List;
import java.util.Map;
 
@Mapper
public interface UtilsSyncMapper {
 
//    /**
//     * 查询sql
//     * @param sql
//     * @return
//     */
//    @Select({"${sql}"})
//    List<Map<String, Object>> getList(@Param("sql") String sql);
//
//    /**
//     * 更新sql
//     * @param sql
//     */
//    @Update({"${sql}"})
//    Integer updateSql(@Param("sql") String sql);
}