智慧农业后台管理
guoshilong
2022-09-17 eab652f2f1c596c839013172a472bf88466f0c83
src/main/java/org/springblade/modules/traceability/controller/SweepRecordController.java
@@ -118,4 +118,24 @@
      return R.data(sweepRecordService.getSweepRecordStatistics(sweepRecord));
   }
   /**
    * 获取扫描次数统计数据(日,月,年统计)
    * @param sweepRecord
    * @return
    */
   @GetMapping("/getSweepRecordStatisticsByDayOrMonthOrYear")
   public R getSweepRecordStatisticsByDayOrMonthOrYear(SweepRecordVO sweepRecord){
      return R.data(sweepRecordService.getSweepRecordStatisticsByDayOrMonthOrYear(sweepRecord));
   }
   /**
    * 累计扫描统计
    * @param sweepRecord
    * @return
    */
   @GetMapping("/getSweepRecordStatisticCount")
   public R getSweepRecordStatisticCount(SweepRecordVO sweepRecord){
      return R.data(sweepRecordService.getSweepRecordStatisticCount(sweepRecord));
   }
}