13 lines
588 B
XML
13 lines
588 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.demand.mapper.GridSettingMapper">
|
||
|
|
||
|
|
||
|
<select id="selectGirdByMassif" resultType="com.fourfaith.iot.demand.pojo.entity.GridSetting">
|
||
|
SELECT name as siteName,grid_id as gridId from irrigation_water_price.geo_massif_polygon gmp where gmp.name in
|
||
|
<foreach collection="list" item="x" separator="," open="(" close=")">
|
||
|
#{x}
|
||
|
</foreach>
|
||
|
</select>
|
||
|
</mapper>
|