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 selectByCount(@Param("tableName") String tableName,@Param("oid") String oid,@Param("btm") String btm); List selectById(@Param("inSql") String inSql); }