删除class 添加calss忽略
parent
3bd42fc31b
commit
9ec8703729
@ -0,0 +1 @@
|
||||
/target/
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
# If you use SLF4J. First, you need to tell log4jdbc-log4j2 that you want to use the SLF4J logger
|
||||
log4jdbc.spylogdelegator.name=net.sf.log4jdbc.log.slf4j.Slf4jSpyLogDelegator
|
@ -1,9 +0,0 @@
|
||||
<?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.docus.demo.mapper.mysql.ArchiveFileMapper">
|
||||
|
||||
|
||||
|
||||
</mapper>
|
@ -1,42 +0,0 @@
|
||||
<?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.docus.demo.mapper.mysql.BasicMapper">
|
||||
|
||||
|
||||
<select id="getBasicVoList" resultType="com.docus.demo.vo.BasicVo">
|
||||
SELECT
|
||||
patient_id as patient_id,
|
||||
admiss_times AS admissTimes,
|
||||
inpatient_no AS inpatientNo,
|
||||
dis_date AS disDate,
|
||||
b_column5 as bColumn5
|
||||
FROM docus_medicalrecord.t_basic
|
||||
<where>
|
||||
b_column5 is not null
|
||||
AND b_column8 = 1
|
||||
|
||||
<!-- <if test="dto.inpatientNoList !=null and dto.inpatientNoList.size() != 0 ">-->
|
||||
<!-- AND inpatient_no in-->
|
||||
<!-- <foreach collection="dto.inpatientNoList" item="inpatientNo" separator="," open="(" close=")">-->
|
||||
<!-- #{inpatientNo}-->
|
||||
<!-- </foreach>-->
|
||||
<!-- </if>-->
|
||||
|
||||
<if test="dto.startDate !=null and dto.startDate != ''">
|
||||
AND dis_date >=#{dto.startDate}
|
||||
</if>
|
||||
|
||||
<if test="dto.startDate !=null and dto.startDate != ''">
|
||||
AND dis_date <= #{dto.endDate}
|
||||
</if>
|
||||
|
||||
|
||||
|
||||
</where>
|
||||
|
||||
limit #{pageStart} ,#{pageEnd}
|
||||
|
||||
</select>
|
||||
</mapper>
|
@ -1,46 +0,0 @@
|
||||
<?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.docus.demo.mapper.mysql.ScanAssortMapper">
|
||||
|
||||
|
||||
<insert id="insertBatch">
|
||||
insert into docus_archivefile.t_scan_assort
|
||||
(id,patient_id,assort_id,file_title,image_path,scan_page,file_source,file_storage_type,file_pages,creater,create_time,sort)
|
||||
values
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
(#{item.id},#{item.patientId},#{item.assortId},#{item.fileTitle},#{item.imagePath},#{item.scanPage},#{item.fileSource},#{item.fileStorageType},#{item.filePages},#{item.creater},#{item.createTime},#{item.sort})
|
||||
</foreach>
|
||||
|
||||
</insert>
|
||||
<insert id="insertOrUpdateBatch">
|
||||
|
||||
insert into docus_archivefile.t_scan_assort
|
||||
(id,patient_id,assort_id,file_title,image_path,scan_page,file_source,file_storage_type,file_pages,creater,create_time,sort)
|
||||
values
|
||||
<foreach collection="list" item="item" index="index"
|
||||
separator=",">
|
||||
(#{item.id},#{item.patientId},#{item.assortId},#{item.fileTitle},#{item.imagePath},#{item.scanPage},#{item.fileSource},#{item.fileStorageType},#{item.filePages},#{item.creater},#{item.createTime},#{item.sort})
|
||||
</foreach>
|
||||
ON DUPLICATE KEY UPDATE file_pages = VALUES(file_pages), update_time = NOW(),sort = VALUES(sort);
|
||||
|
||||
</insert>
|
||||
<select id="getListByPid" resultType="com.docus.demo.entity.ScanAssort">
|
||||
SELECT id,
|
||||
patient_id,
|
||||
assort_id,
|
||||
file_title,
|
||||
image_path,
|
||||
scan_page,
|
||||
file_source,
|
||||
file_storage_type,
|
||||
file_pages,
|
||||
creater,
|
||||
create_time,
|
||||
sort
|
||||
FROM docus_archivefile.t_scan_assort
|
||||
WHERE patient_id = #{pid}
|
||||
</select>
|
||||
|
||||
</mapper>
|
@ -1,17 +0,0 @@
|
||||
<?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.docus.demo.mapper.sqlserver.PictureMapper">
|
||||
|
||||
<select id="getPictureInfoByCid" resultType="com.docus.demo.entity.TPicture">
|
||||
SELECT
|
||||
PicName,
|
||||
PicKind,
|
||||
RotateDegree
|
||||
FROM
|
||||
T_picture
|
||||
where cuid = #{cuid}
|
||||
</select>
|
||||
|
||||
</mapper>
|
@ -1,32 +0,0 @@
|
||||
<?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.docus.demo.mapper.sqlserver1.PaintVisitMapper">
|
||||
|
||||
|
||||
<select id="getTpatientVisitList" resultType="com.docus.demo.entity.sqlserver1.Tpatientvisit">
|
||||
SELECT * FROM Tpatientvisit
|
||||
<where>
|
||||
|
||||
<if test="dto.inpatientNoList !=null and dto.inpatientNoList.size() != 0 ">
|
||||
AND fprn in
|
||||
<foreach collection="dto.inpatientNoList" item="inpatientNo" separator="," open="(" close=")">
|
||||
#{inpatientNo}
|
||||
</foreach>
|
||||
</if>
|
||||
|
||||
<if test="dto.startDate !=null and dto.startDate != ''">
|
||||
AND fcydate >=#{dto.startDate}
|
||||
</if>
|
||||
|
||||
<if test="dto.startDate !=null and dto.startDate != ''">
|
||||
AND fcydate <= #{dto.endDate}
|
||||
</if>
|
||||
|
||||
</where>
|
||||
|
||||
|
||||
|
||||
</select>
|
||||
</mapper>
|
@ -1,9 +0,0 @@
|
||||
<?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.docus.demo.mapper.sqlserver1.TdiagnoseMapper">
|
||||
|
||||
|
||||
|
||||
</mapper>
|
@ -1,9 +0,0 @@
|
||||
<?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.docus.demo.mapper.sqlserver1.TopreationMapper">
|
||||
|
||||
|
||||
|
||||
</mapper>
|
@ -1,8 +0,0 @@
|
||||
<?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.docus.demo.mapper.sqlserver2.TscanMapper">
|
||||
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue