智慧农业后台管理
xiebin
2022-08-01 d16174bd73148a2963f495a24ef97a40e62b4169
src/main/java/org/springblade/modules/farm/mapper/FarmingRecordMapper.xml
@@ -45,6 +45,51 @@
        </if>
    </select>
    <!--自定义查询农事记录分页数据-->
    <select id="selectFarmingRecordPageByNz" resultType="org.springblade.modules.farm.vo.FarmingRecordVO">
        SELECT
        sfr.*,
        sl.land_name landName,
        user.real_name,
        strain.strain_name,
        sf.factory_name
        FROM
        sys_farming_record sfr
        LEFT JOIN sys_land sl ON sl.id = sfr.land_id
        LEFT JOIN blade_user user on sfr.operator = user.id
        LEFT JOIN sys_strain strain on sfr.strain_id = strain.id
        LEFT JOIN sys_stockfactory sf on sf.id = sfr.stock_id
        WHERE
        1 =1 AND sfr.stock_id IS NOT NULL
        <if test="farmingRecord.landId!=null and farmingRecord.landId!=''">
            and sfr.land_id = #{farmingRecord.landId}
        </if>
        <if test="farmingRecord.type!=null and farmingRecord.type!=''">
            and sfr.type = #{farmingRecord.type}
        </if>
        <if test="farmingRecord.stockId!=null and farmingRecord.stockId!=''">
            and sfr.stock_id = #{farmingRecord.stockId}
        </if>
        <if test="farmingRecord.jobWay!=null and farmingRecord.jobWay!=''">
            and sfr.job_way = #{farmingRecord.jobWay}
        </if>
        <if test="farmingRecord.operator!=null and farmingRecord.operator!=''">
            and sfr.operator = #{farmingRecord.operator}
        </if>
        <if test="farmingRecord.deptId!=null and farmingRecord.deptId!=''">
            and sfr.dept_id = #{farmingRecord.deptId}
        </if>
        <if test="farmingRecord.tenantId!=null and farmingRecord.tenantId!=''">
            and sfr.tenant_id = #{farmingRecord.tenantId}
        </if>
        <if test="farmingRecord.strainId!=null and farmingRecord.strainId!=''">
            and sfr.strain_id = #{farmingRecord.strainId}
        </if>
        <if test="farmingRecord.farmId!=null and farmingRecord.farmId!=''">
            and sl.farm_id = #{farmingRecord.farmId}
        </if>
    </select>
    <select id="selectFarmingRecordPages" resultType="org.springblade.modules.farm.vo.FarmingRecordVO">
        select sfr.*,sl.land_name landName from sys_farming_record sfr
        left join sys_land sl on sl.id = sfr.land_id