houzhongjian
2024-11-19 d7ac861cab28bc39f87c1af464ec4d319a0cbb37
提交 | 用户 | 时间
ed4f78 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.plan.item.dao.PlanItemDao">
5
6     <select id="getSourceValue" parameterType="map" resultType="com.iailab.module.data.plan.item.vo.PlanItemDataVO">
7         select
8         ${selectSql}
9         from (
10         ${viewSql}
11         ) plan_t
12         <where>
13             <if test="whereSql != null and whereSql != ''">
14                 and ${whereSql}
15             </if>
16         </where>
17     </select>
18
19 </mapper>