| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="platform.common.base.dao.TemplateDao">
- <select id="getTemplateByName" resultType="platform.common.base.model.Template">
- select * from template
- where
- name=#{name}
- <if test="itemId!=null and itemId!=''">
- and item_id=#{itemId}
- </if>
- <if test="typeId!=null and typeId!=''">
- and type_id=#{typeId}
- </if>
- and del_flag=0 limit 0,1
- </select>
-
- </mapper>
|