123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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="com.bizmatics.mhfire.persistence.mapper.BsSupervisionAllMapper">
- <select id="selectCount" resultType="java.lang.Integer">
- select count(1)
- from `jbzb-jdglxm-all`
- <where>
- <if test="typeOneLetter != null and typeOneLetter != ''">
- and `项目分类型一` = #{typeOneLetter}
- </if>
- <if test="typeTwoLetter != null and typeTwoLetter != ''">
- and `项目分类型二` = #{typeTwoLetter}
- </if>
- <if test="startTime != null">
- and `项目创建日期` >= #{startTime}
- </if>
- <if test="endTime != null">
- and `项目创建日期` <= #{endTime}
- </if>
- <if test="unitId != null and unitId != ''">
- and `项目单位ID` = #{unitId}
- </if>
- </where>
- </select>
- <select id="selectByRecentlyOne" resultType="java.util.Map">
- select *
- from `jbzb-jdglxm-all`
- <where>
- <if test="typeOneLetter != null and typeOneLetter != ''">
- and `项目分类型一` = #{typeOneLetter}
- </if>
- <if test="typeTwoLetter != null and typeTwoLetter != ''">
- and `项目分类型二` = #{typeTwoLetter}
- </if>
- </where>
- limit 0,1
- </select>
- </mapper>
|