| 12345678910111213141516171819202122 |
- <?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.modules.government.dao.ProjectDao">
- <select id="findProjectByNameAndType" resultType="platform.modules.government.entity.Project">
- SELECT * FROM project p WHERE p.project_name = #{name}
- <if test="type != null and type !=''">
- and p.project_type=#{type}
- </if>
- and p.del_flag=0 LIMIT 0 ,1
- </select>
- <select id="findProjectByYear" resultType="platform.modules.government.entity.Project">
- SELECT * FROM project p WHERE p.project_name = #{name} AND p.project_year = #{year}
- <if test="type != null and type !=''">
- and p.project_type=#{type}
- </if>
- and p.del_flag=0 LIMIT 0 ,1
- </select>
- </mapper>
|