You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
910 B
XML
28 lines
910 B
XML
11 months ago
|
<?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.server.mzsy.mapper.MzsyReportDataViewMapper">
|
||
|
|
||
|
|
||
|
<select id="findByPatJzhAndOtherCondition" resultType="com.docus.server.mzsy.entity.MzsyReportDataView">
|
||
|
select
|
||
|
ZYH,
|
||
|
ZYCS,
|
||
|
FFILE_ID AS ffileId,
|
||
|
FFILE_NAME AS ffileName,
|
||
|
FFILE_AF_TIME AS ffileAfTime,
|
||
|
FFILE_TIME AS ffileTime,
|
||
|
FFILE_PATH AS ffilePath,
|
||
|
FPAT_JZH AS fpatJzh,
|
||
|
FPAT_MODULE AS fpatModule,
|
||
|
UPDATE_TIME AS updateTime
|
||
|
from dbo.V_REPORT_DATA
|
||
|
where FPAT_JZH=#{jzh}
|
||
|
<if test="ext != null and ext != ''">
|
||
|
${ext}
|
||
|
</if>
|
||
|
order by FPAT_MODULE asc,FFILE_AF_TIME asc
|
||
|
</select>
|
||
|
</mapper>
|