37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
<mapper namespace="com.transitPlatForm.transitPF.mapper.LisPluginMapper">
|
|
|
|
<select id="queryfilelist" resultType="com.czlis.common.core.domain.entity.lis.SysExeBak">
|
|
select filepath,filena,bakdt1 from sys_exe_bak
|
|
where filepath = #{filepath}
|
|
</select>
|
|
|
|
<select id="getfile" resultType="com.czlis.common.core.domain.entity.lis.SysExeBak">
|
|
select bakdata1 from sys_exe_bak
|
|
<where>
|
|
<if test="filepath != null"> and filepath = #{filepath}</if>
|
|
<if test="filena != null and filena !=''">and filena = #{filena}</if>
|
|
</where>
|
|
</select>
|
|
<select id="getdwfile" resultType="com.czlis.common.core.domain.entity.lis.SysExeBak">
|
|
Select reportcontent as bakdata1 From blood_report
|
|
<where>
|
|
<if test="reportid != null"> and reportid = #{reportid}</if>
|
|
<if test="reportkind != null and reportkind !=''">and reportkind = #{reportkind}</if>
|
|
</where>
|
|
</select>
|
|
<select id="getLabIntersendList" resultType="String">
|
|
Select senddata From lab_intersend_list where guid=#{guid}
|
|
</select>
|
|
<select id="getBarprintList" resultType="map">
|
|
Select * From v_barprint_list
|
|
WHERE bar IN (
|
|
<foreach collection="strIds" item="id" separator="," open="" close="">
|
|
#{id}
|
|
</foreach>
|
|
)
|
|
</select>
|
|
</mapper>
|