提交 | 用户 | 时间
|
a6de49
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
H |
2 |
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|
3 |
|
|
4 |
<mapper namespace="com.iailab.module.data.ind.dao.IndItemValueDao"> |
|
5 |
|
|
6 |
|
|
7 |
<select id="getSourceValue" parameterType="com.iailab.module.data.ind.dto.IndItemDTO" resultType="com.iailab.module.data.ind.dto.IndItemValueDTO"> |
|
8 |
select |
|
9 |
${sqlSelect} |
|
10 |
from ( |
|
11 |
${querySql} |
|
12 |
) ind_t |
|
13 |
<where> |
|
14 |
<if test="sqlWhere != null and sqlWhere != ''"> |
|
15 |
and ${sqlWhere} |
|
16 |
</if> |
|
17 |
</where> |
|
18 |
order by ind_t.data_time |
|
19 |
</select> |
|
20 |
|
|
21 |
</mapper> |