提交 | 用户 | 时间 | ||
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.http.dao.HttpTagDao"> | |
5 | ||
6 | <select id="getList" resultType="com.iailab.module.data.http.dto.HttpTagDTO"> | |
7 | select * from t_http_tag | |
8 | <where> | |
9 | <if test="deviceId != null and deviceId != ''"> | |
10 | tag_type = #{deviceId} | |
11 | </if> | |
12 | </where> | |
13 | </select> | |
14 | ||
15 | </mapper> |