智慧农业后台管理
zengh
2022-08-01 d95f6551e8214d69cd0fd511ec693641eb61ba16
src/main/java/org/springblade/modules/farmplant/mapper/StrainMapper.xml
@@ -5,6 +5,15 @@
    <!--自定义查询农场检测报告/证书分页数据-->
    <select id="selectStrainPage" resultType="org.springblade.modules.farmplant.vo.StrainVO">
        select * from sys_strain where 1=1
        <if test="strain.strainType!=null and strain.strainType!=''">
            and strain_type = #{strain.strainType}
        </if>
        <if test="strain.tenantId!=null and strain.tenantId!=''">
            and tenant_id = #{strain.tenantId}
        </if>
        <if test="strain.strainName!=null and strain.strainName!=''">
            and strain_name like concat('%',#{strain.strainName},'%')
        </if>
    </select>
</mapper>