| | |
| | | from rm_weather_history |
| | | where id = #{id,jdbcType=BIGINT} |
| | | </select> |
| | | <!--根据指定条件查询历史记录数量--> |
| | | <select id="selectCount" resultType="java.lang.Long"> |
| | | SELECT |
| | | COUNT(*) AS recordCount |
| | | FROM rm_weather_history htb |
| | | INNER JOIN pr_st_weather mtb ON mtb.id = htb.weather_id |
| | | <where> |
| | | <if test="weatherId != null"> |
| | | AND htb.weather_id = #{weatherId} |
| | | </if> |
| | | <if test = "no != null"> |
| | | AND mtb.no = #{no} |
| | | </if> |
| | | <if test = "name != null and name !=''"> |
| | | AND mtb.name LIKE CONCAT('%',#{name},'%') |
| | | </if> |
| | | <if test = "timeStart != null and timeStop != null"> |
| | | AND htb.dt BETWEEN #{timeStart} AND #{timeStop} |
| | | </if> |
| | | </where> |
| | | </select> |
| | | |
| | | <!--根据指定条件查询历史记录--> |
| | | <select id="selectSome" resultType="com.dy.pipIrrGlobal.voRm.VoWeather"> |
| | | SELECT |
| | | <include refid="Base_Column_List" />, |
| | | mtb.`name` AS weatherName |
| | | FROM rm_weather_history htb |
| | | INNER JOIN pr_st_weather mtb ON mtb.id = htb.weather_id |
| | | <where> |
| | | <if test="weatherId != null"> |
| | | AND htb.weather_id = #{weatherId} |
| | | </if> |
| | | <if test = "no != null"> |
| | | AND mtb.no = #{no} |
| | | </if> |
| | | <if test = "name != null and name !=''"> |
| | | AND mtb.name LIKE CONCAT('%',#{name},'%') |
| | | </if> |
| | | <if test = "timeStart != null and timeStop != null"> |
| | | AND htb.dt BETWEEN #{timeStart} AND #{timeStop} |
| | | </if> |
| | | </where> |
| | | ORDER BY htb.id DESC |
| | | <trim prefix="limit " > |
| | | <if test="start != null and count != null"> |
| | | #{start,javaType=Integer,jdbcType=INTEGER}, #{count,javaType=Integer,jdbcType=INTEGER} |
| | | </if> |
| | | </trim> |
| | | </select> |
| | | <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
| | | <!--@mbg.generated--> |
| | | delete from rm_weather_history |