智慧农业后台管理
Administrator
2022-05-30 0c90b05a7df664f8dcab2c4b330c07c7b80745a4
src/main/java/org/springblade/modules/farm/mapper/FarmPaperMapper.xml
@@ -5,6 +5,15 @@
    <!--自定义查询农场检测报告/证书分页数据-->
    <select id="selectFarmPaperPage" resultType="org.springblade.modules.farm.vo.FarmPaperVO">
        select * from sys_farm_paper where 1=1
        <if test="farmPaper.type!=null">
            and type = #{farmPaper.type}
        </if>
        <if test="farmPaper.farmId!=null">
            and farm_id = #{farmPaper.farmId}
        </if>
        <if test="farmPaper.name!=null and farmPaper.name!=''">
            and name like concat('%',#{farmPaper.name},'%')
        </if>
    </select>
</mapper>