dongyukun
2024-11-05 e8ad669f7c97d45cd23630dc101180a130d6c17e
提交 | 用户 | 时间
cf757d 1 <?xml version="1.0" encoding="UTF-8"?>
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.value.dao.IndItemValueDao">
5
6     <select id="getSourceValue" parameterType="map" resultType="com.iailab.module.data.ind.item.vo.IndItemValueVO">
7         select
8         ${selectSql}
9         from (
10         ${viewSql}
11         ) ind_t
12         <where>
13             <if test="whereSql != null and whereSql != ''">
14                 and ${whereSql}
15             </if>
16         </where>
5bc3b4 17         <if test="groupSql != null and groupSql != ''">
J 18             group by ${groupSql}
19         </if>
cf757d 20         <if test="orderBySql != null and orderBySql != ''">
21             order by ${orderBySql}
22         </if>
23     </select>
24
25 </mapper>