|
@@ -43,6 +43,8 @@
|
|
|
|
|
|
<select id="getLisPacksIndex" resultType="com.diagbot.entity.LisConfig"
|
|
<select id="getLisPacksIndex" resultType="com.diagbot.entity.LisConfig"
|
|
parameterType="com.diagbot.vo.RetrievalVO">
|
|
parameterType="com.diagbot.vo.RetrievalVO">
|
|
|
|
+ SELECT u.*
|
|
|
|
+ FROM(
|
|
SELECT
|
|
SELECT
|
|
*
|
|
*
|
|
FROM
|
|
FROM
|
|
@@ -84,10 +86,13 @@
|
|
<if test="inputStr!=null and inputStr!=''">
|
|
<if test="inputStr!=null and inputStr!=''">
|
|
and his_name like concat("%",#{inputStr},"%")
|
|
and his_name like concat("%",#{inputStr},"%")
|
|
</if>
|
|
</if>
|
|
|
|
+ ) u LIMIT 100
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<select id="getLisIndex" resultType="com.diagbot.entity.LisConfig"
|
|
<select id="getLisIndex" resultType="com.diagbot.entity.LisConfig"
|
|
parameterType="com.diagbot.vo.RetrievalVO">
|
|
parameterType="com.diagbot.vo.RetrievalVO">
|
|
|
|
+ SELECT u.*
|
|
|
|
+ FROM(
|
|
SELECT
|
|
SELECT
|
|
*
|
|
*
|
|
FROM
|
|
FROM
|
|
@@ -126,5 +131,6 @@
|
|
<if test="inputStr!=null and inputStr!=''">
|
|
<if test="inputStr!=null and inputStr!=''">
|
|
and his_detail_name like concat("%",#{inputStr},"%")
|
|
and his_detail_name like concat("%",#{inputStr},"%")
|
|
</if>
|
|
</if>
|
|
|
|
+ ) u LIMIT 100
|
|
</select>
|
|
</select>
|
|
</mapper>
|
|
</mapper>
|