提交 | 用户 | 时间
|
7fd198
|
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.model.mcs.pre.dao.MmItemOutputDao"> |
|
5 |
|
5b952f
|
6 |
<select id="queryList" resultType="com.iailab.module.model.mcs.pre.dto.MmItemOutputDTO"> |
L |
7 |
select * from t_mm_item_output t |
|
8 |
<where> |
|
9 |
<if test="params.itemid != null and params.itemid != ''"> |
|
10 |
AND t.itemid LIKE CONCAT('%', #{params.itemid},'%') |
|
11 |
</if> |
|
12 |
</where> |
|
13 |
</select> |
7fd198
|
14 |
</mapper> |