智慧农业后台管理
guoshilong
2022-08-22 6e30c1a3f8ef0c4022bcfe1c3dc8169a6bd8368f
修复小程序产量统计根据产业查询功能
2 files modified
7 ■■■■■ changed files
src/main/java/org/springblade/modules/recovery/mapper/RecoveryMapper.xml 3 ●●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/recovery/vo/RecoveryVO.java 4 ●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/recovery/mapper/RecoveryMapper.xml
@@ -86,6 +86,9 @@
        <if test="recovery.endTime != null and recovery.endTime !=''">
            and DATE_FORMAT(sr.create_time,'%Y-%m-%d') &lt;= #{recovery.endTime}
        </if>
        <if test="recovery.strainType != null and recovery.strainType !=''">
            AND strain.strain_type = #{recovery.strainType}
        </if>
        GROUP BY sr.strain_id
    </select>
</mapper>
src/main/java/org/springblade/modules/recovery/vo/RecoveryVO.java
@@ -51,4 +51,8 @@
     * 结束时间
     */
    private String endTime;
    /**
     * 产业类型(0:种植业 1:水产业 2:禽畜业)
     */
    private String strainType;
}