ludc
2023-05-05 4cd535de8ef099afa96238e5458e6866edccfea7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
 
}