<?xml version="1.0" encoding="UTF-8"?> <!-- author:hekesong --> <sqlMap> <!-- 查询作物种植信息列表 --> <select id="queryAreaCrops4List" parameterClass="commonj.sdo.DataObject" resultClass="commonj.sdo.DataObject" > select t.*,p.basename,c.cropsname,c.varieties,c.growthcycle,c.recoverycycle,gh.housename,ga.areaname,(case t.status when 1 then '种植中' else '已完成' end) as status_flag from zhnl_area_crops t LEFT JOIN zhnl_productionbase p on t.baseid = p.id LEFT JOIN zhnl_crops c on t.cropsid = c.id LEFT JOIN zhnl_greenhouse gh on t.greenhouseid = gh.id LEFT JOIN zhnl_greenhouse_area ga on t.areasid = ga.id where 1=1 <isNotNull prepend="and" property="basename"> p.basename like '%$basename$%' </isNotNull> <isNotNull prepend="and" property="housename"> gh.housename like '%$housename$%' </isNotNull> <isNotNull prepend="and" property="areaname"> ga.areaname like '%$areaname$%' </isNotNull> <isNotNull prepend="and" property="batchcode"> t.batchcode like '%$batchcode$%' </isNotNull> <isNotNull prepend="and" property="manageScope"> t.greenhouseid in ($manageScope$) </isNotNull> order by t.createtime desc </select> <!-- 根据种植区域id获取种植信息 --> <select id="queryAreaCropsByAreaId" parameterClass="commonj.sdo.DataObject" resultClass="commonj.sdo.DataObject" > select t.*,c.cropsname,c.varieties from zhnl_area_crops t LEFT JOIN zhnl_crops c on t.cropsid = c.id where 1=1 and t.areasid= #areasid# and t.status = '1' </select> <!-- 根据种植批次更新种植信息状态--> <update id="updateStatusByBatchcode" parameterClass="commonj.sdo.DataObject" > update zhnl_area_crops t set t.status = #status# where t.batchcode=#batchcode# </update> <update id="updateStateByBatchcode" parameterClass="commonj.sdo.DataObject" > update zhnl_area_crops t set t.state = #state# where t.batchcode=#batchcode# </update> <select id="getCpfjBycppc" parameterClass="map" resultClass="com.nl.Intelligentag.platform.area_xg.ZhnlAreaCropsCpfj"> select * from zhnl_area_crops_cpfj where batchcode=#cppc# </select> <select id="getCropsBycppc" parameterClass="map" resultClass="com.nl.Intelligentag.platform.productionbase.ZhnlAreaCrops"> select * from zhnl_area_crops where batchcode=#cppc# </select> </sqlMap>
时间: 2024-04-19 21:24:51 浏览: 95
sqlmap-1.6.5-11_sqlmap-1.6.5-11
这是一个包含多个查询语句的 SQL Map 文件,用于与数据库进行交互。除了前面提到的查询作物种植信息列表的语句外,还包含其他几个查询和更新语句。
其中,第一个查询语句 "queryAreaCrops4List" 是根据一些条件查询作物种植信息列表的。它可以根据 "basename"、"housename"、"areaname"、"batchcode" 和 "manageScope" 进行动态条件筛选,并按照 "createtime" 降序排列结果。
第二个查询语句 "queryAreaCropsByAreaId" 是根据种植区域ID获取种植信息的,它根据给定的 "areasid" 查询对应的种植信息。
接下来是两个更新语句,分别是根据种植批次更新种植信息的状态。
最后是两个额外的查询语句,用于获取与指定种植批次相关联的其他数据。
这些查询和更新语句都是根据特定的条件执行操作,并返回相应的结果集或更新记录。
如果您有关于这些查询语句的更多问题或有其他需求,请随时告诉我。
阅读全文