1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.vci.ubcs.code.mapper;
|
| import org.apache.ibatis.annotations.MapKey;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 公共查詢mapper
| *
| * @author ludc
| * @date 2022-01-24
| */
| public interface CommonsMapper {
|
| @MapKey("count")
| Map<String,String> selectByCount(@Param("tableName") String tableName,@Param("oid") String oid,@Param("btm") String btm);
|
| List<String> selectById(@Param("inSql") String inSql);
|
| List<Map> selectBySql(@Param("inSql") String inSql);
|
| }
|
|