zjh
2023-12-21 2c763a3a3eef8f202c75fe6fb12900a4c98fb3b2
ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjAdviceMapper.java
@@ -72,5 +72,14 @@
            "#{id}",
            "</foreach>",
            "</script>" })
    public String getAdviceStringByIds(@Param("aList") List<String> aList);
    public String getAdviceStringByIdss(@Param("aList") String[] aList);
    @Select({"<script>", "select * from tj_advice a where a.id in",
            "<foreach collection='aList' item='id' open='(' separator=',' close=')'>",
            "#{id}",
            "</foreach>",
            "</script>" })
    List<TjAdvice> getAdviceStringByIds(@Param("aList") String[] aList);
}