16 lines
704 B
XML
16 lines
704 B
XML
<?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.fourfaith.iot.drought.mapper.CropDroughtMapper">
|
|
|
|
<select id="getCropDrought" resultType="com.fourfaith.iot.drought.pojo.entity.CropDrought">
|
|
select
|
|
t1.muValue, t1.zzjgType, t1.droughtType, t1.zzjgTime, t1.droughtTime
|
|
from geo_tif_zzjg_drought_result t1
|
|
WHERE t1.zzjgType is not null and t1.droughtTime = #{droughtTime}
|
|
and t1.zzjgType in
|
|
<foreach collection="types" open="(" close=")" separator="," item="type">
|
|
#{type}
|
|
</foreach>
|
|
</select>
|
|
</mapper>
|