| | |
| | | <select id="selectLandList" resultType="java.util.HashMap"> |
| | | select id,land_name as landName from sys_land where user_id=#{userid} and is_deleted = 0 |
| | | </select> |
| | | <!--土地总面积--> |
| | | <select id="selectZAre" resultType="java.util.HashMap"> |
| | | SELECT land_area as area,land_unit as unit FROM sys_land WHERE is_deleted=0 |
| | | </select> |
| | | <!--土地使用面积--> |
| | | <select id="selectSAre" resultType="java.util.HashMap"> |
| | | SELECT land_area as area,land_unit as unit FROM sys_land WHERE is_deleted=0 and type=0 |
| | | </select> |
| | | <select id="selectNum" resultType="java.util.HashMap"> |
| | | SELECT strain_id FROM `sys_farm_plant` WHERE status=1 GROUP BY strain_id |
| | | </select> |
| | | |
| | | </mapper> |